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