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