UNPKG

@astraicons/react

Version:

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

39 lines 1.54 kB
import * as React from "react"; import { forwardRef } from "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("rect", { width: 6, height: 8, x: 9, y: 4.5, rx: 1.937 }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M5.35 7.01H9M15.5 7.01H19" }), /*#__PURE__*/React.createElement("path", { d: "M19 6.243q.001-.013.014-.014h1.972q.013.001.014.014v2.115a1 1 0 1 1-2 0zM3 6.243q.001-.013.014-.014h1.972q.013.001.014.014v2.115a1 1 0 1 1-2 0z" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M20 6V3M4 6V3M22 3.88h-4M6 3.88H2M11 7.5h2" }), /*#__PURE__*/React.createElement("path", { d: "M14.84 16.857 12.576 20.4c-.295.461-.857.461-1.152 0L9.16 16.857c-.258-.404-.197-.992.134-1.302l.67-.625a.65.65 0 0 1 .442-.183h3.188c.16 0 .314.064.442.183l.67.625c.331.31.392.898.134 1.302Z" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M18 16.5c0-1.856-.632-3.637-1.757-4.95A6.2 6.2 0 0 0 15 10.439M6 16.5c0-1.856.632-3.637 1.757-4.95a6.3 6.3 0 0 1 1.01-.946m0 0q.25-.188.515-.344z" })); const ForwardRef = forwardRef(DroneIcon); export default ForwardRef;