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