@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.38 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 StyledArrowLeftSolid = ({
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: "M23.9515 12.2857C23.9515 13.2339 23.2337 14 22.2854 14H5.85509L11.5015 19.6464C12.1712 20.3161 12.1712 21.4009 11.5015 22.0705C11.164 22.4054 10.7247 22.5714 10.2854 22.5714C9.84616 22.5714 9.40795 22.404 9.07366 22.0692L0.502232 13.4978C-0.167411 12.8281 -0.167411 11.7433 0.502232 11.0737L9.07366 2.50223C9.7433 1.83259 10.8281 1.83259 11.4978 2.50223C12.1674 3.17188 12.1674 4.2567 11.4978 4.92634L5.85509 10.5714H22.2854C23.2337 10.5714 23.9515 11.3375 23.9515 12.2857Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledArrowLeftSolid);
const ArrowLeftSolid = /*#__PURE__*/memo(ForwardRef);
export default ArrowLeftSolid;