@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.42 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 StyledArrowUpLongRegular = ({
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: "M19.6694 7.89775C19.4496 8.11804 19.1628 8.22585 18.874 8.22585C18.5853 8.22585 18.2985 8.11598 18.0786 7.8963L13.6245 3.4403L13.6245 22.4747C13.6245 23.0957 13.1182 23.5996 12.4995 23.5996C11.8808 23.5996 11.3746 23.0957 11.3746 22.4747L11.3746 3.4403L6.92045 7.89447C6.48104 8.33389 5.7693 8.33389 5.32964 7.89447C4.88999 7.45505 4.89022 6.74331 5.32964 6.30366L11.7041 -0.0708268C12.1436 -0.510244 12.8553 -0.510244 13.2949 -0.0708269L19.6694 6.30366C20.1088 6.74472 20.1088 7.45716 19.6694 7.89775Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledArrowUpLongRegular);
const ArrowUpLongRegular = /*#__PURE__*/memo(ForwardRef);
export default ArrowUpLongRegular;