@semcore/icon
Version:
Semrush Icon Component
27 lines • 1.34 kB
JavaScript
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
import React from 'react';
import { createBaseComponent } from '@semcore/core';
import Icon from '../../lib/esm/index.mjs';
function RootFood({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Food",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M0 7c0 .276.112.526.292.707C.105 8.098 0 8.537 0 9c0 .463.105.902.292 1.293A.997.997 0 0 0 0 11v1a4 4 0 0 0 4 4h8a4 4 0 0 0 4-4v-1a.997.997 0 0 0-.292-.707C15.895 9.902 16 9.463 16 9c0-.463-.105-.902-.292-1.293.18-.181.292-.431.292-.707V6a6 6 0 0 0-6-6H6a6 6 0 0 0-6 6v1Zm10-5H6a4 4 0 0 0-4 4h12a4 4 0 0 0-4-4Zm3.001 8A1 1 0 0 0 13 8H3a1 1 0 0 0 0 2H13ZM2 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2H2Z",
shapeRendering: "geometricPrecision"
}));
}
RootFood.displayName = 'Food';
const Food = createBaseComponent(RootFood);
export { Food as default };