22. 07. 08 StyleComponent Props 전달

홍왕열·2022년 7월 8일
0

CSS

목록 보기
5/6
<Bar  process={(el.upload[0] / el.upload[1]) * 100}
           backgroundColor="red” ></Bar>.  — 전달


export const Bar = styled.div`
  width: ${(props) => props.process}%;
  background-color: ${(props) => props.backgroundColor};
  height: 100%;
`; - 사용
```c
profile
코딩 일기장

0개의 댓글