@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 StyledPlaneEnginesSolid = ({
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: "M20.0958 14.3333H15.2375L13.6875 17.0458C14.25 17.2042 14.6667 17.7208 14.6667 18.3333C14.6667 19.0708 14.0708 19.6667 13.3333 19.6667H12.1917L11.05 21.6625C10.8125 22.075 10.3708 22.3333 9.89167 22.3333H7.55C7.10833 22.3333 6.7875 21.9083 6.90833 21.4833L8.95417 14.3333H4.66667L2.86667 16.7333C2.74083 16.9 2.54333 17 2.33333 17H0.584583C0.261833 17 1.25e-05 16.7375 1.25e-05 16.3792C1.25e-05 16.3625 0.0075875 16.3083 0.0225083 16.2542L0.967083 12.95C0.408708 12.7542 0 12.275 0 11.6667C0 11.0583 0.408708 10.5417 0.967083 10.3833L0.0225083 7.07917C0.0075875 7.025 1.25e-05 6.97083 1.25e-05 6.91667C1.25e-05 6.59583 0.261833 6.33333 0.584583 6.33333H2.33333C2.54333 6.33333 2.74083 6.43333 2.86667 6.6L4.66667 9H8.95417L6.90833 1.85C6.7875 1.42375 7.10833 1 7.55 1H9.89167C10.3708 1 10.8125 1.25638 11.05 1.67167L12.1917 3.66667H13.3333C14.0708 3.66667 14.6667 4.26375 14.6667 5C14.6667 5.6125 14.25 6.12917 13.6875 6.2875L15.2375 9H20.0958C21.5208 9 24 10.2083 24 11.6667C24 13.1667 21.5208 14.3333 20.0958 14.3333Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledPlaneEnginesSolid);
const PlaneEnginesSolid = /*#__PURE__*/memo(ForwardRef);
export default PlaneEnginesSolid;