During the development of a module using styled-components, I encountered an issue with @supports (clip-path: circle())
const Element = styled.div`
overflow: hidden;
border-radius: 50%;
clip-path: circle();
@supports (clip-path: circle()) {
overflow: auto;
border-radius: 0;
}
`;
It appears that @supports is not functioning properly with clip-path. Anyone have any insights on whether this is a CSS or styled-components related problem?