Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR TYPESCRIPT

Destructuring props in styled-components

const Post = styled.article`
  background: ${props =>
    props.isFeatured ? props.theme.yellow : props.theme.white
  };
`;

const Post = styled.article`
  background: ${({ isFeatured, theme }) =>
    isFeatured ? theme.yellow : theme.white
  };
`;
Source by domhabersack.com #
 
PREVIOUS NEXT
Tagged: #Destructuring #props
ADD COMMENT
Topic
Name
6+8 =