Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save KTruong008/1344995523cae6fdd7cc212a9317506e to your computer and use it in GitHub Desktop.
Save KTruong008/1344995523cae6fdd7cc212a9317506e to your computer and use it in GitHub Desktop.
import styled from 'styled-components';
export const Box = styled.div`
display: inline-block;
background: pink;
width: 200px;
height: 200px;
transition: transform 300ms ease-in-out;
`
export default Box;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment