type Props = { className?: string fill?: string } const Circle = ({ className, fill = "#FFF" }: Props) => ( ) export default Circle