Created
June 15, 2020 15:01
-
-
Save corysimmons/a9b789778a2c3bd7d199ee03db3e1787 to your computer and use it in GitHub Desktop.
Cleaner props in styled-components from Sara Vieira's Twitter thread https://twitter.com/Saeris/status/1262441528078688256
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import styled, { css } from 'styled-components' | |
const Styles = styled.div(({ someProp }) => css` | |
font-size: ${someProp ? '10px' : '20px'}; | |
`) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment