styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
16 lines (15 loc) • 1.07 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var React = tslib_1.__importStar(require("react"));
var StyledIconBase_1 = require("../../StyledIconBase");
exports.Mug = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase_1.StyledIconBase, tslib_1.__assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 16 16" }, props, { ref: ref }),
React.createElement("path", { d: "M15 5h-3V3.5C12 2.119 9.314 1 6 1S0 2.119 0 3.5v10C0 14.881 2.686 16 6 16s6-1.119 6-2.5V12h3a1 1 0 001-1V6a1 1 0 00-1-1zM2.751 4.037c-.578-.19-.928-.394-1.116-.537.188-.143.538-.347 1.116-.537C3.656 2.665 4.81 2.5 6 2.5s2.344.164 3.249.463c.578.19.928.394 1.116.537-.188.143-.538.347-1.116.537C8.344 4.335 7.19 4.5 6 4.5s-2.344-.164-3.249-.463zM14 10h-2V7h2v3z", key: "k0" })));
});
exports.Mug.displayName = 'Mug';
exports.MugDimensions = { height: 16, width: 16 };
;