Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save KTruong008/b5e5010a047a0061344f414dfa7ae7dd to your computer and use it in GitHub Desktop.
Save KTruong008/b5e5010a047a0061344f414dfa7ae7dd to your computer and use it in GitHub Desktop.
import styled, { keyframes } from 'styled-components';
export const keyFrameExampleOne = keyframes`
0% {
height: 200px;
}
100% {
height: 600px;
background: orange;
}
`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment