Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save KTruong008/bf2f8f7edc9359241c8f2be182a0ea96 to your computer and use it in GitHub Desktop.
Save KTruong008/bf2f8f7edc9359241c8f2be182a0ea96 to your computer and use it in GitHub Desktop.
import styled from 'styled-components';
import { keyFrameExampleOne } from './KeyFrames';
export const Box = styled.div`
display: inline-block;
background: pink;
width: 200px;
height: 200px;
position: relative;
animation: ${keyFrameExampleOne} 2s ease-in-out 0s infinite;
`
export default Box;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment