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