@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.32 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 StyledArrowBackSolid = ({
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: "M0.439437 10.9407L6.43944 4.94067C7.02537 4.35474 7.97459 4.35474 8.56053 4.94067C9.14647 5.52661 9.14647 6.47583 8.56053 7.06177L5.12342 10.5001H22.5C23.3292 10.5001 24 11.1708 24 12.0001C24 12.8293 23.3292 13.5001 22.5 13.5001H5.12342L8.56311 16.9397C9.14904 17.5257 9.14904 18.4749 8.56311 19.0608C7.97764 19.6463 7.02842 19.6472 6.44201 19.0608L0.442015 13.0608C-0.146501 12.4735 -0.146501 11.5266 0.439437 10.9407Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledArrowBackSolid);
const ArrowBackSolid = /*#__PURE__*/memo(ForwardRef);
export default ArrowBackSolid;