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