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