@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
26 lines • 868 B
JavaScript
const React = require("react");
function ArrowLeftBorderIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
strokeMiterlimit: 10,
d: "M17 12V9.494c0-3.112-1.955-4.386-4.347-2.83l-1.93 1.253-1.93 1.253c-2.391 1.556-2.391 4.104 0 5.66l1.93 1.253 1.93 1.253c2.392 1.556 4.347.282 4.347-2.83z"
}));
}
const ForwardRef = React.forwardRef(ArrowLeftBorderIcon);
module.exports = ForwardRef;