Last active
June 19, 2017 00:38
-
-
Save weslleyaraujo/4b512489288ac0f8964d2b2768d82fe2 to your computer and use it in GitHub Desktop.
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 from ‘styled-components’; | |
const Score = styled.div` | |
/* some styles here … */ | |
font-size: ${props => props.length <= 2 ? 62 : 45}px; | |
`; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment