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