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