@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.15 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 StyledCaretRightRegular = ({
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: "M4 3.56273V20.3918C4 23.5945 7.88871 25.2098 10.1614 22.9371L18.5759 14.5301C19.9755 13.1215 19.9755 10.83 18.5759 9.42133L10.1614 1.01433C7.88871 -1.1802 4 0.422311 4 3.56273ZM16.0207 11.9772L7.60697 20.3918V3.56273L16.0207 11.9772Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledCaretRightRegular);
const CaretRightRegular = /*#__PURE__*/memo(ForwardRef);
export default CaretRightRegular;