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