@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.38 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 StyledArrowRightRegular = ({
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: "M14.175 2.35447L23.6036 11.3545C23.8581 11.5972 24.0021 11.9336 24.0021 12.2855C24.0021 12.6375 23.8581 12.9734 23.6036 13.2166L14.175 22.2166C13.6611 22.7055 12.8475 22.687 12.3568 22.1731C11.8663 21.6642 11.8847 20.8472 12.4003 20.3549L19.5093 13.5727H1.28625C0.576429 13.5727 0 12.9963 0 12.2865C0 11.5767 0.576429 11.0013 1.28625 11.0013H19.5059L12.397 4.21916C11.8822 3.7259 11.8661 2.90893 12.3536 2.3984C12.8464 1.88411 13.6125 1.8659 14.175 2.35447Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledArrowRightRegular);
const ArrowRightRegular = /*#__PURE__*/memo(ForwardRef);
export default ArrowRightRegular;