@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 1.23 kB
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const LanguageIcon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M7.5 2.25A5.25 5.25 0 0 0 2.25 7.5v9c0 2.9 2.35 5.25 5.25 5.25h9c2.9 0 5.25-2.35 5.25-5.25v-9c0-2.9-2.35-5.25-5.25-5.25zM9.75 7a.75.75 0 0 0-1.5 0v1.25H7a.75.75 0 0 0 0 1.5h1.122A2.25 2.25 0 0 1 6 11.25a.75.75 0 0 0 0 1.5 3.74 3.74 0 0 0 2.612-1.059c.61.636 1.439 1.059 2.388 1.059a.75.75 0 0 0 0-1.5c-.53 0-1.034-.258-1.422-.728a1 1 0 0 0-.105-.104q.131-.321.202-.668h4.522c-.426 3.031-3.406 5.5-7.197 5.5a.75.75 0 0 0 0 1.5c2.19 0 4.226-.723 5.782-1.932A7.92 7.92 0 0 0 18 16.75a.75.75 0 0 0 0-1.5 6.43 6.43 0 0 1-4.114-1.463c1.001-1.124 1.66-2.507 1.824-4.037H18a.75.75 0 0 0 0-1.5h-2.25V7a.75.75 0 0 0-1.5 0v1.25h-4.5z",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(LanguageIcon);
export default ForwardRef;