@semcore/icon
Version:
Semrush Icon Component
29 lines • 1.25 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 User({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "User",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M12 2a6 6 0 1 0 0 12 6 6 0 0 0 0-12ZM8 8a4 4 0 1 1 8 0 4 4 0 0 1-8 0Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
d: "M6.5 16A4.5 4.5 0 0 0 2 20.5V22h2v-1.5A2.5 2.5 0 0 1 6.5 18h11a2.5 2.5 0 0 1 2.5 2.5V22h2v-1.5a4.5 4.5 0 0 0-4.5-4.5h-11Z",
shapeRendering: "geometricPrecision"
}));
}
User.displayName = 'User';
export default createBaseComponent(User);