@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.7 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 StyledPlaneDepartureSolid = ({
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: "M18.1725 3.91086C18.8475 3.56586 19.5975 3.38586 20.355 3.38586H22.5075C23.52 3.38586 24.2213 4.39648 23.865 5.34336C23.1825 7.16961 21.8288 8.66961 20.085 9.54336L9.855 14.6584C9.68625 14.7409 9.5025 14.7859 9.315 14.7859H4.15125C3.8025 14.7859 3.46875 14.6321 3.24075 14.3659L0.50025 11.1709C0.246075 10.8746 0.338213 10.4171 0.687375 10.2409L1.89338 9.64086C2.21438 9.47961 2.58975 9.46836 2.9175 9.61461L5.06625 10.5521L8.7975 8.69961L3.2865 5.15586C2.89538 4.90423 2.92688 4.32261 3.34275 4.11448L5.0625 3.25386C5.62875 2.95536 6.35625 2.91899 6.97875 3.15336L14.2875 5.89461L18.1725 3.91086ZM0 19.5859C0 18.9221 0.537375 18.3859 1.2 18.3859H22.8C23.4638 18.3859 24 18.9221 24 19.5859C24 20.2496 23.4638 20.7859 22.8 20.7859H1.2C0.537375 20.7859 0 20.2496 0 19.5859Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledPlaneDepartureSolid);
const PlaneDepartureSolid = /*#__PURE__*/memo(ForwardRef);
export default PlaneDepartureSolid;