@semcore/icon
Version:
Semrush Icon Component
33 lines • 1.47 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 RootUserDemo({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "UserDemo",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M7 3.416V2h7v5H9.9a5.023 5.023 0 0 1 0 2h4.6A1.5 1.5 0 0 0 16 7.5v-6A1.5 1.5 0 0 0 14.5 0h-8A1.5 1.5 0 0 0 5 1.5V3c.711 0 1.388.148 2 .416Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M5 11a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm0-2a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
d: "M3 12a3 3 0 0 0-3 3v1h2v-1a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v1h2v-1a3 3 0 0 0-3-3H3Z",
shapeRendering: "geometricPrecision"
}));
}
RootUserDemo.displayName = 'UserDemo';
const UserDemo = createBaseComponent(RootUserDemo);
export { UserDemo as default };