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