@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 838 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const ArrowLeftBorderIcon = ({
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: "M12.245 6.035c1.34-.871 2.762-1.068 3.888-.335 1.09.71 1.617 2.114 1.617 3.794v5.013c0 1.68-.527 3.084-1.617 3.793-1.126.734-2.548.537-3.888-.334l-3.86-2.507C7.035 14.581 6.25 13.343 6.25 12s.785-2.58 2.135-3.458z",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(ArrowLeftBorderIcon);
export default ForwardRef;