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