mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-24 07:31:52 +02:00
31 lines
No EOL
1.1 KiB
JavaScript
31 lines
No EOL
1.1 KiB
JavaScript
const React = require("react");
|
|
|
|
function ArrowLeftCircleIcon({
|
|
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("g", {
|
|
clipPath: "url(#clip0_9_2121)"
|
|
}, /*#__PURE__*/React.createElement("path", {
|
|
fillRule: "evenodd",
|
|
d: "M10 18a8 8 0 100-16 8 8 0 000 16zm3.25-7.25a.75.75 0 000-1.5H8.66l2.1-1.95a.75.75 0 10-1.02-1.1l-3.5 3.25a.75.75 0 000 1.1l3.5 3.25a.75.75 0 001.02-1.1l-2.1-1.95h4.59z",
|
|
clipRule: "evenodd"
|
|
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
id: "clip0_9_2121"
|
|
}, /*#__PURE__*/React.createElement("path", {
|
|
d: "M0 0h20v20H0z"
|
|
}))));
|
|
}
|
|
|
|
const ForwardRef = React.forwardRef(ArrowLeftCircleIcon);
|
|
module.exports = ForwardRef; |