Styled Components

props 사용 팁

css 문법으로 사용하려면?

const Panel = styled.div<{
  isShow: boolean;
}>`
  position: absolute;
  top: 720px;
  left: 320px;

  ${(props) =>
    props.isShow &&
    css`
      visibility: visible;
    `}
`;