@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 797 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const ChevronLeftIcon = ({
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: "M15.58 18.477a.75.75 0 0 0-.104-1.056l-5.092-4.19a1.713 1.713 0 0 1 0-2.661l4.85-3.99a.75.75 0 1 0-.954-1.16L9.43 9.412a3.213 3.213 0 0 0 0 4.978l5.094 4.19a.75.75 0 0 0 1.055-.102",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(ChevronLeftIcon);
export default ForwardRef;