@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.26 kB
JavaScript
import React, { forwardRef, memo } from "react";
import { AccessibleIcon } from "../accessible-icon";
import { StyledSvg, StyledPath } from "../styles";
import { jsx as _jsx } from "react/jsx-runtime";
const StyledChevronLeftSolid = ({
label,
color = "#000000",
className = "",
css = {},
viewBox = "0 0 24 24"
}, ref) => {
return /*#__PURE__*/_jsx(AccessibleIcon, {
label: label,
children: /*#__PURE__*/_jsx(StyledSvg, {
className: className,
css: css,
viewBox: viewBox,
xmlns: "http://www.w3.org/2000/svg",
xmlnsXlink: "http://www.w3.org/1999/xlink",
ref: ref,
children: /*#__PURE__*/_jsx(StyledPath, {
css: {
fill: `${color}`
},
d: "M16.9997 24C16.4879 24 15.9759 23.8047 15.5859 23.4141L5.58594 13.4141C4.80469 12.6328 4.80469 11.3672 5.58594 10.5859L15.5859 0.585938C16.3672 -0.195312 17.6328 -0.195312 18.4141 0.585938C19.1953 1.36719 19.1953 2.63281 18.4141 3.41406L9.82781 12L18.4153 20.5875C19.1966 21.3687 19.1966 22.6344 18.4153 23.4156C18.0247 23.8062 17.5122 24 16.9997 24Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledChevronLeftSolid);
const ChevronLeftSolid = /*#__PURE__*/memo(ForwardRef);
export default ChevronLeftSolid;