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