Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR TYPESCRIPT

styled components if else

const Box = styled.div`
    height:100px;
    width:100px;
    ${props => props.Size === 'Small' && css`
         height:20px;
         width:20px;
    `}
`
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #styled #components
ADD COMMENT
Topic
Name
8+9 =