UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 2.28 kB
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 StyledPlaneEnginesRegular = ({ 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: "M15.8833 8.33333H19.3C20.9208 8.33333 24 9.66667 24 11.6667C24 13.7083 20.9208 15 19.3417 15H15.925L14.5917 17.1375C15.0292 17.3542 15.3333 17.8083 15.3333 18.3333C15.3333 19.0708 14.7375 19.6667 14 19.6667H13.0125L11.7667 21.6667C11.5167 22.0833 11.1 22.3333 10.6 22.3333H7.89583C7.47917 22.3333 7.0625 22.1667 6.8125 21.8333C6.56667 21.5 6.48333 21.0042 6.60833 20.625L8.39583 15H6.35417L4.73333 17.1667C4.48333 17.5 4.10875 17.6667 3.6925 17.6667H1.32083C0.946667 17.6667 0.530417 17.5 0.280833 17.1667C0.0312 16.8333 -0.052 16.4167 0.0728333 16L0.952917 12.9458C0.401833 12.7792 0 12.2708 0 11.6667C0 11.0667 0.396375 10.5583 0.941667 10.3917L0.0312 7.33333C-0.052 6.95833 0.0312 6.54167 0.280833 6.20833C0.530417 5.875 0.946667 5.66667 1.32083 5.66667H3.6925C4.10875 5.66667 4.48333 5.875 4.73333 6.20833L6.35417 8.33333H8.39583L6.60833 2.70833C6.48333 2.33333 6.56667 1.875 6.8125 1.54167C7.0625 1.20833 7.47917 1 7.89583 1H10.6C11.0583 1 11.5583 1.29167 11.725 1.66667L12.9708 3.66667H14C14.7375 3.66667 15.3333 4.26375 15.3333 5C15.3333 5.5375 15.0167 5.9625 14.5583 6.2125L15.8833 8.33333ZM14.8042 13H19.3C20.4208 13 21.9208 12.125 21.9625 11.6667C21.8792 11.25 20.3792 10.3333 19.3 10.3333H14.8042L10.225 3H8.8125L11.1 10.3333H5.35833L3.35958 7.66667H2.23625L3.40125 11.6667L2.23625 15.6667H3.35958L5.35833 13H11.1L8.8125 20.3333H10.225L14.8042 13Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledPlaneEnginesRegular); const PlaneEnginesRegular = /*#__PURE__*/memo(ForwardRef); export default PlaneEnginesRegular;