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