@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.17 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 StyledCaretLeftRegular = ({
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: "M19.5975 20.4005V3.60176C19.5975 0.404746 15.7158 -1.20763 13.4472 1.06095L5.04786 9.45283C3.65071 10.859 3.65071 13.1463 5.04786 14.5525L13.4472 22.9443C15.7128 25.2002 19.5975 23.6028 19.5975 20.4005ZM7.59692 12.0011L15.9963 3.60176V20.4005L7.59692 12.0011Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledCaretLeftRegular);
const CaretLeftRegular = /*#__PURE__*/memo(ForwardRef);
export default CaretLeftRegular;