const Box = styled.div` width:300px; height:300px; background-color:red; `; const Circle = styled.div` width:300px; height:300px; background-color:red; border-radius:100%; `; return { Box, Circle, };