import type { SVGProps } from "react"; export interface GoogleSheetsIconProps extends Omit, "width" | "height"> { className?: string; size?: number; color?: string; } export function GoogleSheetsIcon({ className = "", size = 24, color = "currentColor", ...props }: GoogleSheetsIconProps) { return ( {/* Grid cells cut out as transparent */} ); }