트랜지션(transition)

import React from 'react';
import styled from '@emotion/styled';

const Division = styled.div`
  width: 100px;
  height: 100px;
  background-color: green;
  transition: all 2s;

  &:hover {
    border-radius: 50%;
    background-color: gray;
  }
`;

function App() {
  return <Division />;
}

export default App;

트랜지션의 프로퍼티

Memo

참고자료