@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 2.11 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 StyledMugHotRegular = ({
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.99995ZM15.75 19.4999C15.75 20.7421 14.7422 21.7499 13.5 21.7499H4.5C3.25781 21.7499 2.25 20.7421 2.25 19.4999V11.2499H15.75V19.4999ZM18.75 17.2499H18V11.2499H18.75C20.4023 11.2499 21.75 12.5976 21.75 14.2499C21.75 15.9023 20.4047 17.2499 18.75 17.2499ZM5.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(StyledMugHotRegular);
const MugHotRegular = /*#__PURE__*/memo(ForwardRef);
export default MugHotRegular;