import { SVGProps } from 'react'; import styled from 'styled-components'; import { Svg, SvgProps } from '../../components'; const StyledRadioChecked = styled(Svg)` width: 24px; height: 24px; display: none; input:checked ~ & { display: block; } `; const StyledRadioUnchecked = styled(Svg)` width: 24px; height: 24px; display: block; input:checked ~ & { display: none; } `; const RadioCheckedSvg: React.FC = ({ className, ...props }: SvgProps) => ( ); const RadioUncheckedSvg: React.FC = ({ className, ...props }: SvgProps) => ( ); export const RadioIcon: React.FC> = (props: SVGProps) => ( <> );