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