Skip to content

Instantly share code, notes, and snippets.

@Swiip
Last active May 17, 2018 09:17
Show Gist options
  • Select an option

  • Save Swiip/8aba7465715aed915ce1914094ce8b13 to your computer and use it in GitHub Desktop.

Select an option

Save Swiip/8aba7465715aed915ce1914094ce8b13 to your computer and use it in GitHub Desktop.
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