@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.37 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 StyledArrowRightSolid = ({
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: "M23.4963 13.4978L14.9249 22.0692C14.5928 22.4067 14.1535 22.5728 13.7142 22.5728C13.2749 22.5728 12.8367 22.4053 12.5024 22.0705C11.8328 21.4009 11.8328 20.3161 12.5024 19.6464L18.1499 14.0013H1.7142C0.767592 14.0013 0 13.2353 0 12.287C0 11.3388 0.767592 10.5728 1.7142 10.5728H18.1499L12.5035 4.92634C11.8338 4.2567 11.8338 3.17187 12.5035 2.50223C13.1731 1.83259 14.2579 1.83259 14.9276 2.50223L23.499 11.0737C24.166 11.746 24.166 12.8281 23.4963 13.4978Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledArrowRightSolid);
const ArrowRightSolid = /*#__PURE__*/memo(ForwardRef);
export default ArrowRightSolid;