@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.46 kB
JavaScript
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
import React from 'react';
import { createBaseComponent } from '@semcore/core';
import Icon from '@semcore/icon';
function Goblet({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Goblet",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M12.316 8.526a4.9 4.9 0 0 0 .685-.113C15.5 8 16 5 16 2.873c.008-.5-.412-.873-.913-.873H13v-.286A.714.714 0 0 0 12.286 1H3.714A.714.714 0 0 0 3 1.714V2H.913c-.501 0-.921.372-.913.874C0 5 .5 8 3 8.414a4.9 4.9 0 0 0 .685.112A5.006 5.006 0 0 0 7 10.9V14H6a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2H9v-3.1a5.007 5.007 0 0 0 3.316-2.374ZM5 6a3 3 0 0 0 6 0V3H5v3Zm8-2v2.328c.211-.122.404-.355.587-.8.178-.435.292-.966.354-1.528H13ZM3 4v2.328c-.211-.122-.404-.355-.587-.8-.178-.435-.292-.966-.354-1.528H3Z",
shapeRendering: "geometricPrecision"
}));
}
Goblet.displayName = 'Goblet';
export default createBaseComponent(Goblet);