UNPKG

@astraicons/react

Version:

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

21 lines 979 B
const React = require("react"); function HeadsetIcon({ title, titleId, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", "aria-hidden": "true", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { d: "M3.75 9c0-3.287 3.507-6.25 8.25-6.25S20.25 5.713 20.25 9v3.715A2.5 2.5 0 0 0 16 14.5v2a2.5 2.5 0 0 0 4.988.25H21a.75.75 0 0 0 .75-.75V9c0-4.445-4.552-7.75-9.75-7.75S2.25 4.555 2.25 9v7c0 .414.336.75.75.75h.012a2.5 2.5 0 0 0 2.238 2.238v.512a3.25 3.25 0 0 0 3.25 3.25h3c.69 0 1.25-.56 1.25-1.25v-2a.75.75 0 0 0-1.5 0v1.75H8.5a1.75 1.75 0 0 1-1.75-1.75v-.834A2.5 2.5 0 0 0 8 16.5v-2a2.5 2.5 0 0 0-4.25-1.785z" })); } const ForwardRef = React.forwardRef(HeadsetIcon); module.exports = ForwardRef;