Summary: _typescript_

Reviewed By: danielbuechele

Differential Revision: D17180572

fbshipit-source-id: 2c820b6c2aef7abf567c42f87de7864501a91c2d
This commit is contained in:
Chaiwat Ekkaewnumchai
2019-09-05 02:58:46 -07:00
committed by Facebook Github Bot
parent 8ae170c034
commit 56b061d883

View File

@@ -25,7 +25,7 @@ export const inputStyle = (compact: boolean) => ({
});
const Input = styled('input')(({compact}: {compact?: boolean}) => ({
...inputStyle(compact),
...inputStyle(compact || false),
padding: compact ? '0 5px' : '0 10px',
}));