import type { SVGProps } from "react"; export interface ShapeCircleIconProps extends Omit, "width" | "height"> { className?: string; size?: number; color?: string; } export function ShapeCircleIcon({ className = "", size = 24, color = "currentColor", ...props }: ShapeCircleIconProps) { return ( ); }