import styled from 'styled-components/macro' import { svgColorStyles } from '../Checkbox/Icon' export const RadioSvg = styled.svg` margin-right: 22px; ${svgColorStyles} ` type Props = { checked?: boolean, } export const Icon = ({ checked }: Props) => { const id = checked ? '#radio-checked' : '#radio-unchecked' return ( ) }