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