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