Component에 boolean 타입의 props를 넘겨줄 때..


하고 싶었던 것

<ChildrenWrapper booleanTypeProp>
  {children}
</ChildrenWrapper>

...

const ChildrenWrapper = styled.div<{ booleanTypeProp: boolean }>`
  ${({ booleanTypeProp }) => !booleanTypeProp && css`...`}
`;

문제

해결

원인