Currently, I am attempting to create a component within a wrapped styled component. The Styled component has a circular shape, and I am seeking assistance in styling it accordingly. Can anyone provide guidance on how to apply the styles needed to achieve a circular shape for the Styled component?
Previously, I tried creating it as a rectangular styled component with the properties below:
const IconContainer = styled.div`
margin: 0 0 0 -15px;
padding: 16px;
position: absolute;
top: 50%;
-ms-transform: translateY(-50%);
transform: translateY(-50%);
justifycontent: center;
align-items: center;