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