Styled Components
const Panel = styled.div<{ isShow: boolean; }>` position: absolute; top: 720px; left: 320px; ${(props) => props.isShow && css` visibility: visible; `} `;