mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-02-02 11:32:30 -06:00
27 lines
No EOL
1.3 KiB
JavaScript
27 lines
No EOL
1.3 KiB
JavaScript
const React = require("react");
|
|
|
|
function LanguageIcon({
|
|
title,
|
|
titleId,
|
|
...props
|
|
}, svgRef) {
|
|
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
xmlns: "http://www.w3.org/2000/svg",
|
|
viewBox: "0 0 20 20",
|
|
fill: "currentColor",
|
|
"aria-hidden": "true",
|
|
ref: svgRef,
|
|
"aria-labelledby": titleId
|
|
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
id: titleId
|
|
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
d: "M7.75 2.75a.75.75 0 00-1.5 0v1.258a32.987 32.987 0 00-3.599.278.75.75 0 10.198 1.487A31.545 31.545 0 018.7 5.545 19.381 19.381 0 017 9.56a19.418 19.418 0 01-1.002-2.05.75.75 0 00-1.384.577 20.935 20.935 0 001.492 2.91 19.613 19.613 0 01-3.828 4.154.75.75 0 10.945 1.164A21.116 21.116 0 007 12.331c.095.132.192.262.29.391a.75.75 0 001.194-.91c-.204-.266-.4-.538-.59-.815a20.888 20.888 0 002.333-5.332c.31.031.618.068.924.108a.75.75 0 00.198-1.487 32.832 32.832 0 00-3.599-.278V2.75z"
|
|
}), /*#__PURE__*/React.createElement("path", {
|
|
fillRule: "evenodd",
|
|
d: "M13 8a.75.75 0 01.671.415l4.25 8.5a.75.75 0 11-1.342.67L15.787 16h-5.573l-.793 1.585a.75.75 0 11-1.342-.67l4.25-8.5A.75.75 0 0113 8zm2.037 6.5L13 10.427 10.964 14.5h4.073z",
|
|
clipRule: "evenodd"
|
|
}));
|
|
}
|
|
|
|
const ForwardRef = React.forwardRef(LanguageIcon);
|
|
module.exports = ForwardRef; |