UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.8 kB
import React, { forwardRef, memo } from "react"; import { AccessibleIcon } from "../accessible-icon"; import { StyledSvg, StyledPath } from "../styles"; import { jsx as _jsx } from "react/jsx-runtime"; const StyledHeadsetSolid = ({ label, color = "#000000", className = "", css = {}, viewBox = "0 0 24 24" }, ref) => { return /*#__PURE__*/_jsx(AccessibleIcon, { label: label, children: /*#__PURE__*/_jsx(StyledSvg, { className: className, css: css, viewBox: viewBox, xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink", ref: ref, children: /*#__PURE__*/_jsx(StyledPath, { css: { fill: `${color}` }, d: "M8.95781 10.5C8.95781 9.66938 8.28563 8.99813 7.45781 8.99813L6.75 9C5.09344 9 3.75 10.3434 3.75 12.0037V14.2439C3.75 15.9047 5.09531 17.25 6.75 17.25H7.5C8.32781 17.25 9 16.5769 9 15.7472L8.95781 10.5ZM12 0C5.29219 0 0.214828 5.58281 0.000975 12L0 13.875C0 14.4984 0.503906 15 1.08281 15C1.66172 15 2.25 14.4984 2.25 13.875V12C2.25 6.62344 6.62531 2.25938 12 2.25938C17.3766 2.25938 21.75 6.62344 21.75 12V18.75C21.75 19.7855 20.9105 20.625 19.875 20.625H14.6859C14.2969 19.9547 13.5797 19.5 12.75 19.5H11.3344C10.2464 19.5 9.24844 20.2355 9.04359 21.3042C8.76562 22.7437 9.8625 24 11.2078 24H12.75C13.5806 24 14.2983 23.5448 14.6878 22.875H19.875C22.1531 22.875 24 21.0281 24 18.75V12C23.7844 5.58281 18.7078 0 12 0ZM17.25 17.25C18.9066 17.25 20.25 15.9047 20.25 14.2439V12.0047C20.25 10.3453 18.9047 9 17.25 9H16.5C15.6722 9 15 9.67219 15 10.5019V15.7453C15 16.5797 15.6703 17.25 16.5 17.25H17.25Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledHeadsetSolid); const HeadsetSolid = /*#__PURE__*/memo(ForwardRef); export default HeadsetSolid;