UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

36 lines 1.51 kB
const React = require("react"); const { forwardRef } = require("react"); const DroneIcon = ({ title, titleId, ...props }, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", strokeWidth: 1.5, stroke: "currentColor", "aria-hidden": "true", ref: ref, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M18 16.5c0-1.857-.632-3.637-1.757-4.95A6.2 6.2 0 0 0 15 10.438M6 16.5c0-1.857.632-3.637 1.757-4.95q.464-.54 1.01-.946m0 0q.25-.188.515-.344z" }), /*#__PURE__*/React.createElement("rect", { width: 6, height: 8, x: 9, y: 4.5, rx: 1.937 }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M6.5 7.01H9M15.5 7.01c1.367 0 .633-.01 2-.01M11 7.5h2" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M20 6V3M4 6V3m18 .88h-4m-12 0H2m18 5.478a1 1 0 0 1-1-1V6.243q.001-.013.014-.014h1.972q.013.001.014.014v2.115a1 1 0 0 1-1 1Zm-16 0a1 1 0 0 1-1-1V6.243q.001-.013.014-.014h1.972q.013.001.014.014v2.115a1 1 0 0 1-1 1Zm8.576 11.043 2.264-3.544c.258-.404.197-.992-.134-1.302l-.67-.625a.65.65 0 0 0-.442-.183h-3.188a.65.65 0 0 0-.442.183l-.67.625c-.331.31-.392.898-.134 1.302l2.264 3.544c.295.461.857.461 1.152 0Z", opacity: 0.4 })); const ForwardRef = forwardRef(DroneIcon); module.exports = ForwardRef;