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