Last active
May 17, 2018 09:17
-
-
Save Swiip/8aba7465715aed915ce1914094ce8b13 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
| const BB8 = styled.div` | |
| animation: ${({ turn }) => turn ? | |
| `${spin} 0.8s infinite linear` : "none"}; | |
| /* or */ | |
| ${({ turn }) => turn && css` | |
| animation: ${spin} 0.8s infinite linear; | |
| `} | |
| `; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment