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