@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 StyledArrowRightLongRegular = ({
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: "M15.7031 19.1297C15.4828 18.9516 15.375 18.6657 15.375 18.375C15.375 18.0844 15.4849 17.7994 15.7046 17.5796L20.1609 13.125H1.125C0.503906 13.125 0 12.6188 0 11.9578C0 11.3766 0.503906 10.875 1.125 10.875H20.1609L15.7064 6.4205C15.267 5.98104 15.267 5.26924 15.7064 4.82956C16.1459 4.38987 16.8577 4.3901 17.2973 4.82956L23.6723 11.2046C24.1118 11.644 24.1118 12.3558 23.6723 12.7955L17.2973 19.1705C16.8563 19.6079 16.1437 19.6079 15.7031 19.1297Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledArrowRightLongRegular);
const ArrowRightLongRegular = /*#__PURE__*/memo(ForwardRef);
export default ArrowRightLongRegular;