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