@unstoppabledomains/ui-kit
Version:
A set of common Unstoppable Domains components
21 lines • 1.2 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 OKT = /*#__PURE__*/React.forwardRef(({
iconRef,
...props
}, ref) => {
return /*#__PURE__*/React.createElement(SvgIcon, _extends({
viewBox: "0 0 64 64"
}, props, {
ref: iconRef || ref
}), /*#__PURE__*/React.createElement("g", {
xmlns: "http://www.w3.org/2000/svg",
transform: "translate(0.000000,64.000000) scale(0.100000,-0.100000)",
fill: "#000000",
stroke: "none"
}, /*#__PURE__*/React.createElement("path", {
d: "M0 320 l0 -320 320 0 320 0 0 320 0 320 -320 0 -320 0 0 -320z m260 120 l0 -60 60 0 60 0 0 60 0 60 60 0 60 0 0 -60 0 -60 -60 0 -60 0 0 -60 0 -60 60 0 60 0 0 -60 0 -60 -60 0 -60 0 0 60 0 60 -60 0 -60 0 0 -60 0 -60 -60 0 -60 0 0 60 0 60 60 0 60 0 0 60 0 60 -60 0 -60 0 0 60 0 60 60 0 60 0 0 -60z"
})));
});
export default OKT;