@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.27 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 StyledChevronLeftRegular = ({
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: "M15.205 23.4902L5.44744 13.1258C5.14912 12.8104 5 12.4057 5 12.0007C5 11.5958 5.14919 11.1906 5.44744 10.8756L15.205 0.511186C15.8272 -0.145113 16.8626 -0.172728 17.5186 0.447261C18.1792 1.06947 18.2025 2.10966 17.5825 2.76153L8.8273 12.0009L17.5825 21.2402C18.2026 21.8922 18.1791 22.9278 17.5186 23.5544C16.8688 24.172 15.8323 24.1448 15.205 23.4902Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledChevronLeftRegular);
const ChevronLeftRegular = /*#__PURE__*/memo(ForwardRef);
export default ChevronLeftRegular;