@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
20 lines • 1.16 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const HeadsetIcon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M6.075 5.512C4.587 6.587 3.75 8.006 3.75 9.5v3.391a2.75 2.75 0 0 1 5 1.582v1.684c0 1.259-.846 2.32-2 2.646v.054c0 .77.624 1.393 1.393 1.393h3.107v-1.393a.75.75 0 0 1 1.5 0V20.5c0 .69-.56 1.25-1.25 1.25H8.143a2.893 2.893 0 0 1-2.893-2.893v-.054a2.75 2.75 0 0 1-1.949-2.116A.75.75 0 0 1 2.25 16V9.5c0-2.096 1.178-3.927 2.947-5.204C6.967 3.017 9.375 2.25 12 2.25s5.033.767 6.803 2.046c1.77 1.277 2.947 3.108 2.947 5.204V16a.75.75 0 0 1-1.051.687 2.75 2.75 0 0 1-5.449-.53v-1.684a2.75 2.75 0 0 1 5-1.582V9.5c0-1.494-.837-2.913-2.325-3.988C16.437 4.438 14.345 3.75 12 3.75s-4.437.688-5.925 1.762"
}));
const ForwardRef = forwardRef(HeadsetIcon);
module.exports = ForwardRef;