@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.94 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 StyledPlaneArrivalSolid = ({
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: "M0.00948 8.25871L0.0015975 4.54959C0.00078 4.16521 0.35655 3.87909 0.731625 3.96271L2.06512 4.25896C2.46113 4.34671 2.78588 4.62909 2.92838 5.00896L3.56625 6.76621L8.37375 8.20996L6.8175 2.76496C6.70875 2.38171 6.9975 2 7.395 2H8.89875C9.33 2 9.73125 2.23381 9.945 2.61159L14.0325 9.88246L18.0563 11.0675C18.6525 11.2437 19.2075 11.5362 19.695 11.9262L20.985 12.9575C21.8888 13.6775 21.6638 15.1062 20.5838 15.5187C19.0388 16.1037 17.3513 16.1937 15.7538 15.7775L4.56375 12.8675C4.1475 12.7587 3.76875 12.5412 3.465 12.2337L0.3576 9.10246C0.135225 8.87746 0.0101513 8.57371 0.00948 8.25871ZM22.8 18.8C23.4638 18.8 24 19.3362 24 20C24 20.6637 23.4638 21.2 22.8 21.2H1.2C0.537375 21.2 0 20.6637 0 20C0 19.3362 0.537375 18.8 1.2 18.8H22.8ZM7.2 15.8C7.2 16.4637 6.66375 17 6 17C5.33625 17 4.8 16.4637 4.8 15.8C4.8 15.1362 5.33625 14.6 6 14.6C6.66375 14.6 7.2 15.1362 7.2 15.8ZM8.4 16.4C8.4 15.7362 8.93625 15.2 9.6 15.2C10.2638 15.2 10.8 15.7362 10.8 16.4C10.8 17.0637 10.2638 17.6 9.6 17.6C8.93625 17.6 8.4 17.0637 8.4 16.4Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledPlaneArrivalSolid);
const PlaneArrivalSolid = /*#__PURE__*/memo(ForwardRef);
export default PlaneArrivalSolid;