@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.24 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 StyledCaretLeftSolid = ({
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.3251 23.3412L5.70637 13.7901C5.23483 13.2566 5 12.6404 5 11.9566C5 11.2727 5.23483 10.7257 5.70449 10.256L15.3232 0.704935C16.0112 0.0168973 17.0448 -0.189304 17.9443 0.183196C18.8438 0.555695 19.4281 1.43611 19.4281 2.40549V21.5753C19.4281 22.5477 18.8433 23.4254 17.9439 23.7981C17.0445 24.1708 16.0089 24.0326 15.3251 23.3412Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledCaretLeftSolid);
const CaretLeftSolid = /*#__PURE__*/memo(ForwardRef);
export default CaretLeftSolid;