@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 StyledArrowLeftRegular = ({
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.9514 12.2852C23.9514 12.995 23.3749 13.5715 22.6651 13.5715H4.49422L11.6031 20.3536C12.1188 20.8441 12.1372 21.6613 11.6467 22.1718C11.1562 22.6858 10.3427 22.7042 9.82846 22.2154L0.399894 13.2154C0.143957 12.9763 0 12.6388 0 12.2852C0 11.9317 0.143957 11.5995 0.398421 11.3531L9.82699 2.35308C10.3389 1.86612 11.1531 1.88433 11.646 2.39862C12.1365 2.90755 12.1181 3.72451 11.6025 4.21683L4.49355 10.999H22.7132C23.421 10.9995 23.9514 11.5781 23.9514 12.2852Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledArrowLeftRegular);
const ArrowLeftRegular = /*#__PURE__*/memo(ForwardRef);
export default ArrowLeftRegular;