@semcore/icon
Version:
Semrush Icon Component
29 lines • 1.56 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 Food({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Food",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M16 5a1 1 0 1 0 0 2 1 1 0 0 0 0-2ZM17 8a1 1 0 1 1 2 0 1 1 0 0 1-2 0ZM14 7a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M23 12a.997.997 0 0 1-.292.707c.187.391.292.83.292 1.293 0 .463-.105.902-.292 1.293.18.181.292.431.292.707v1a6 6 0 0 1-6 6H7a6 6 0 0 1-6-6v-1c0-.276.112-.526.292-.707A2.988 2.988 0 0 1 1 14c0-.463.105-.902.292-1.293A.997.997 0 0 1 1 12v-2a9 9 0 0 1 9-9h4a9 9 0 0 1 9 9v2ZM10 3h4a7 7 0 0 1 7 7v1H3v-1a7 7 0 0 1 7-7ZM4 15h16.002A1 1 0 0 0 20 13H4a1 1 0 0 0 0 2Zm-1 2a4 4 0 0 0 4 4h10a4 4 0 0 0 4-4H3Z",
shapeRendering: "geometricPrecision"
}));
}
Food.displayName = 'Food';
export default createBaseComponent(Food);