(props: Omit<SVGProps<SVGSVGElement>, "size"> & { size?: "sm" | "md" | "lg" })
| 4 | import { cx } from "@/utils/cx"; |
| 5 | |
| 6 | export const Circle = (props: Omit<SVGProps<SVGSVGElement>, "size"> & { size?: "sm" | "md" | "lg" }) => { |
| 7 | const { size = "lg", className } = props; |
| 8 | const Pattern = sizes[size]; |
| 9 | |
| 10 | return <Pattern className={className} />; |
| 11 | }; |
| 12 | |
| 13 | const lg = (props: SVGProps<SVGSVGElement>) => { |
| 14 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected