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