@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.96 kB
JavaScript
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 StyledMugHotSolid = ({
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: "M18.75 8.99995H1.5C0.667969 8.99995 0 9.67026 0 10.4999V19.4999C0 21.9843 2.01562 23.9999 4.5 23.9999H13.5C15.9844 23.9999 18 21.9843 18 19.4999H18.75C21.6445 19.4999 24 17.1445 24 14.2499C24 11.3554 21.6469 8.99995 18.75 8.99995ZM18.75 16.4999H18V11.9999H18.75C19.9922 11.9999 21 13.0078 21 14.2499C21 15.4921 19.9922 16.4999 18.75 16.4999ZM5.05781 4.72026C5.63906 5.02026 6 5.69057 6 6.37495C6 6.99604 6.50391 7.49479 7.125 7.49479C7.74609 7.49479 8.25 6.94214 8.25 6.36089C8.25 4.89182 7.46109 3.51839 6.19172 2.77729C5.61094 2.43886 5.25 1.81073 5.25 1.13808C5.25 0.516982 4.74609 0.00651367 4.125 0.00651367C3.50391 0.00651367 3 0.516982 3 1.13808C3 2.60761 3.78891 3.98058 5.05781 4.72026ZM10.3078 4.72026C10.8891 5.02026 11.25 5.69057 11.25 6.37495C11.25 6.99604 11.7539 7.49339 12.375 7.49339C12.9961 7.49339 13.5 6.94214 13.5 6.36089C13.5 4.89182 12.7111 3.51839 11.4417 2.77729C10.8609 2.43886 10.5 1.81073 10.5 1.13808C10.5 0.516982 9.99609 0.00463867 9.375 0.00463867C8.75391 0.00463867 8.25 0.516982 8.25 1.13808C8.25 2.60761 9.0375 3.98058 10.3078 4.72026Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledMugHotSolid);
const MugHotSolid = /*#__PURE__*/memo(ForwardRef);
export default MugHotSolid;