import { SVGProps } from "react"; import * as _$react_jsx_runtime0 from "react/jsx-runtime"; //#region src/react/grid.d.ts type GridIconProps = SVGProps & { /** Accessibility title for the icon, set aria-hidden="true" if the icon is purely decorative. */title?: string; /** * The size of the icon. * It sets the font-size, possible as the width and height is `1em`. If not set, the icon will inherit the font size of its parent. */ size?: '2xl' | 'xl' | 'large' | 'medium' | 'small'; /** * The color of the icon. * @default 'inherit' */ color?: 'inherit' | 'primary' | 'gray' | 'black' | 'white'; }; declare const GridIcon: ({ title, size, color, ...props }: GridIconProps) => _$react_jsx_runtime0.JSX.Element; //#endregion export { GridIconProps as n, GridIcon as t }; //# sourceMappingURL=grid-Drdgo7z4.d.mts.map