import type { SVGProps } from "react"; export interface GRDProps extends SVGProps { /** * Icon size (width and height) * @default 16 */ size?: number | string; } /** * Grenada — GRD icon from flag category * * @example * * */ export const GRD = ({ size = 16, ...props }: GRDProps) => ( );