@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
35 lines • 1.04 kB
JavaScript
import * as React from "react";
function HeadsetIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__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: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M3 16V9c0-3.866 4.03-7 9-7s9 3.134 9 7v7"
}), /*#__PURE__*/React.createElement("rect", {
width: 4,
height: 5.684,
x: 16,
y: 12.473,
opacity: 0.4,
rx: 2
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M12 19.5v2a.5.5 0 0 1-.5.5h-3A2.5 2.5 0 0 1 6 19.5v-1m0-.343a2 2 0 0 0 2-2v-1.684a2 2 0 1 0-4 0v1.684a2 2 0 0 0 2 2Z",
opacity: 0.4
}));
}
const ForwardRef = React.forwardRef(HeadsetIcon);
export default ForwardRef;