@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.3 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 StyledChevronRightRegular = ({
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: "M7.8264 0.511339L17.5841 10.8759C17.8824 11.1912 18.0315 11.5959 18.0315 12.001C18.0315 12.4058 17.8823 12.8103 17.5841 13.126L7.8264 23.4906C7.20453 24.1452 6.16876 24.1724 5.51279 23.5519C4.85219 22.9297 4.82887 21.8895 5.44887 21.2376L14.2042 11.9982L5.44887 2.7588C4.82887 2.10693 4.85206 1.07389 5.51279 0.447242C6.16876 -0.172584 7.20453 -0.145308 7.8264 0.511339Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledChevronRightRegular);
const ChevronRightRegular = /*#__PURE__*/memo(ForwardRef);
export default ChevronRightRegular;