@unstoppabledomains/ui-kit
Version:
A set of common Unstoppable Domains components
31 lines • 1.27 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 Ubiq = /*#__PURE__*/React.forwardRef(({
iconRef,
...props
}, ref) => {
return /*#__PURE__*/React.createElement(SvgIcon, _extends({
viewBox: "0 0 32 32"
}, props, {
ref: iconRef || ref
}), /*#__PURE__*/React.createElement("g", {
fill: "none",
fillRule: "evenodd"
}, /*#__PURE__*/React.createElement("circle", {
cx: "16",
cy: "16",
r: "16",
fill: "#00EA90"
}), /*#__PURE__*/React.createElement("path", {
fill: "#FFF",
fillOpacity: ".698",
fillRule: "nonzero",
d: "M18.215 7.508l7.777 4.068-7.493 4.593-.284-8.661zm-4.43 16.941l-7.777-4.068 7.493-4.594.284 8.662z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#FFF",
fillRule: "nonzero",
d: "M25.992 20.679L15.179 27v-8.869l10.813-6.555v9.103zm-19.984-9.4L16.821 5v8.834L6.008 20.381v-9.103z"
})));
});
export default Ubiq;