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