@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.19 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 StyledPaperPlaneTopSolid = ({
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: "M3.335 2.144c-1.45-.63-2.879.929-2.129 2.32l2.888 5.367a1.2 1.2 0 0 0 .912.625l7.334.917c.141.017.25.137.25.279a.283.283 0 0 1-.25.28l-7.334.916a1.21 1.21 0 0 0-.912.625L1.206 18.84c-.75 1.391.68 2.95 2.13 2.32l18.412-7.979c1.337-.579 1.337-2.479 0-3.058L3.335 2.143Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledPaperPlaneTopSolid);
const PaperPlaneTopSolid = /*#__PURE__*/memo(ForwardRef);
export default PaperPlaneTopSolid;