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