Skip to content

Instantly share code, notes, and snippets.

@corysimmons
Created June 15, 2020 15:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save corysimmons/a9b789778a2c3bd7d199ee03db3e1787 to your computer and use it in GitHub Desktop.
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
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