Skip to content

Instantly share code, notes, and snippets.

@hpierre74
Last active August 6, 2018 00:07
Show Gist options
  • Save hpierre74/ed27c5207221919986cc659a62305b6e to your computer and use it in GitHub Desktop.
Save hpierre74/ed27c5207221919986cc659a62305b6e to your computer and use it in GitHub Desktop.
import styled from 'styled-components';
export const SlideInDownWrapper = styled.div`
${ ({ theme: { utils } }) => utils.slideInDown(1.5) };
`;
export const RotateInWrapper = styled.div`
${ ({ theme: { utils } }) => utils.rotateIn(1.5) };
`;
export const BounceInWrapper = styled.div`
${ ({ theme: { utils } }) => utils.bounceIn(1.5) };
`;
// ... etc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment