GeorgianLari

GeorgianLari.tsx

export function GeorgianLari(props: any) {
    const { className } = props
    return (
        <svg
            className={className}
            xmlns="http://www.w3.org/2000/svg"
            width="24"
            height="24"
            viewBox="0 0 24 24"
            fill="none"
            stroke="currentColor"
            strokeWidth="2"
            strokeLinecap="round"
            strokeLinejoin="round"
            aria-hidden="true"
        >
            <path d="M11.5 21a7.5 7.5 0 1 1 7.35-9" />
            <path d="M13 12V3" />
            <path d="M4 21h16" />
            <path d="M9 12V3" />
        </svg>
    )
}