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