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