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:
committed by
Facebook GitHub Bot
parent
353c0657d0
commit
f83a088f0d
@@ -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',
|
||||
}));
|
||||
|
||||
|
||||
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user