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