chore: use alternate syntax for styled

This commit is contained in:
fragosti
2018-10-24 13:44:00 -07:00
parent c7a063ca47
commit 379f7c7883
4 changed files with 16 additions and 4 deletions

View File

@@ -30,7 +30,10 @@ export interface ContainerProps {
opacity?: number;
}
export const Container = styled<ContainerProps, 'div'>('div')`
export const Container =
styled.div <
ContainerProps >
`
box-sizing: border-box;
${props => cssRuleIfExists(props, 'display')}
${props => cssRuleIfExists(props, 'position')}