Dependency bumps [3/n]

Summary:
allow-large-files

Bumped dependencies using yarn upgrade-interactive. Closes a lot of GH issues / PR's

Reviewed By: passy

Differential Revision: D20446667

fbshipit-source-id: 59acc77dde36600e0479f1e180b8b5ee7b01d801
This commit is contained in:
Michel Weststrate
2020-03-16 11:19:52 -07:00
committed by Facebook GitHub Bot
parent 353c0657d0
commit f83a088f0d
2 changed files with 6 additions and 3 deletions

View File

@@ -43,13 +43,13 @@ type ToggleProps = {
toggled: boolean;
};
const ToolbarToggleButton = styled(ToggleButton)(_props => ({
const ToolbarToggleButton = styled(ToggleButton)(() => ({
alignSelf: 'center',
marginRight: 4,
minWidth: 30,
}));
const ToggleLabel = styled(Text)(_props => ({
const ToggleLabel = styled(Text)(() => ({
whiteSpace: 'nowrap',
}));

View File

@@ -56,7 +56,10 @@ const VisualizerContainer = styled.div({
userSelect: 'none',
});
const DeviceImage = styled.img(({width, height}) => ({
const DeviceImage = styled.img<{
width?: number | string;
height?: number | string;
}>(({width, height}) => ({
width,
height,
userSelect: 'none',