Input
Summary: _typescript_ Reviewed By: danielbuechele Differential Revision: D17180572 fbshipit-source-id: 2c820b6c2aef7abf567c42f87de7864501a91c2d
This commit is contained in:
committed by
Facebook Github Bot
parent
8ae170c034
commit
56b061d883
@@ -25,7 +25,7 @@ export const inputStyle = (compact: boolean) => ({
|
|||||||
});
|
});
|
||||||
|
|
||||||
const Input = styled('input')(({compact}: {compact?: boolean}) => ({
|
const Input = styled('input')(({compact}: {compact?: boolean}) => ({
|
||||||
...inputStyle(compact),
|
...inputStyle(compact || false),
|
||||||
padding: compact ? '0 5px' : '0 10px',
|
padding: compact ? '0 5px' : '0 10px',
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user