@unstoppabledomains/ui-kit
Version:
A set of common Unstoppable Domains components
24 lines • 1.15 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 SvgIcon from '@mui/material/SvgIcon';
import React from 'react';
const Base = /*#__PURE__*/React.forwardRef(({
iconRef,
...props
}, ref) => {
return /*#__PURE__*/React.createElement(SvgIcon, _extends({
viewBox: "0 0 146 146"
}, props, {
ref: iconRef || ref
}), /*#__PURE__*/React.createElement("circle", {
xmlns: "http://www.w3.org/2000/svg",
cx: "73",
cy: "73",
r: "73",
fill: "#0052FF"
}), /*#__PURE__*/React.createElement("path", {
xmlns: "http://www.w3.org/2000/svg",
d: "M73.323 123.729C101.617 123.729 124.553 100.832 124.553 72.5875C124.553 44.343 101.617 21.4463 73.323 21.4463C46.4795 21.4463 24.4581 42.0558 22.271 68.2887H89.9859V76.8864H22.271C24.4581 103.119 46.4795 123.729 73.323 123.729Z",
fill: "white"
}));
});
export default Base;