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