컴포넌트에 props로 css module 변수를 전달하는 경우,
<Button className={'medium'} />
styles.className 이 아니라,
styles[className] 을 사용하면 된다.
//Button.tsx
<button className={styles[className]} onClick={onClick}>버튼</button>
'Front-End > CSS' 카테고리의 다른 글
Chakra UI (0) | 2023.04.03 |
---|---|
bootstrap (0) | 2023.03.28 |
Ant-Design (0) | 2023.03.22 |
Styled-components (0) | 2023.03.13 |
reflow, repaint (랜더 트리, reflow, reflow를 줄이는 예) (0) | 2023.03.05 |