styled components 에서 createGlobalStyle 을 이용해서 antd 에서 정의한 class 를 수정해준다. 이외 react-slick 등 외부 라이브러리 사용시 정의된 class 를 수정할 수도 있다. import { createGlobalStyle } from 'styled-components'; const Global = createGlobalStyle` .ant-row{ ... } .slick-slide{ display: inline-block; } `;