Skip to content

Instantly share code, notes, and snippets.

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