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