@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 StyledCaretRightSolid = ({
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: "M9.11786 0.709901L18.7714 10.2956C19.2466 10.8311 19.4804 11.4495 19.4804 12.0001C19.4804 12.5506 19.2447 13.2354 18.7733 13.7068L9.11974 23.2925C8.42921 23.983 7.3919 24.19 6.48914 23.8161C5.58638 23.4423 5 22.6944 5 21.6537V2.41436C5 1.43845 5.58683 0.557555 6.48952 0.183479C7.3922 -0.190598 8.43155 0.0183123 9.11786 0.709901Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledCaretRightSolid);
const CaretRightSolid = /*#__PURE__*/memo(ForwardRef);
export default CaretRightSolid;