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