@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.57 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 = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Goblet",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M5 3.141C5 2.511 5.511 2 6.141 2H17.86c.629 0 1.14.511 1.14 1.141V4h2.066c.966 0 1.884.72 1.926 1.81.035.921-.018 2.477-.64 3.922-.627 1.46-1.843 2.804-4.004 3.222A7.008 7.008 0 0 1 13 16.93V20h1.998a1 1 0 1 1 0 2H8.996a1 1 0 1 1 0-2H11v-3.07a7.008 7.008 0 0 1-5.348-3.976c-2.16-.418-3.377-1.762-4.005-3.222-.62-1.445-.674-3-.639-3.922C1.05 4.72 1.968 4 2.934 4H5v-.859ZM7 10V4h10v6a5 5 0 0 1-10 0ZM5 6v4c0 .221.01.44.03.656-.775-.392-1.244-1.015-1.545-1.714C3.057 7.946 2.983 6.8 3.004 6H5Zm13.97 4.656c.775-.392 1.244-1.015 1.545-1.714.428-.996.502-2.141.481-2.942H19v4c0 .221-.01.44-.03.656Z",
shapeRendering: "geometricPrecision"
}));
}
Goblet.displayName = 'Goblet';
export default createBaseComponent(Goblet);