import { useTheme } from "styled-components"; type SvgProps = { className?: string; }; export const ChevronRight: FC = ({ className }) => ( ); export const Checkmark: FC = ({ className }) => { const { colors } = useTheme(); return ( ); }; export const Circle: FC = ({ className }) => ( );