@unstoppabledomains/ui-kit
Version:
A set of common Unstoppable Domains components
28 lines • 1.04 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';
import { makeStyles } from "../../styles";
const useStyles = makeStyles()(() => ({
root: {
borderRadius: '50%'
}
}));
const TheDogeNFT = /*#__PURE__*/React.forwardRef(({
iconRef,
...props
}, ref) => {
const {
classes
} = useStyles();
return /*#__PURE__*/React.createElement(SvgIcon, _extends({}, props, {
className: classes.root,
ref: iconRef || ref
}), /*#__PURE__*/React.createElement("image", {
href: "https://storage.googleapis.com/unstoppable-client-assets/images/icons/DOG/icon.jpeg",
x: "-12px",
y: "-7px",
height: "50px",
width: "50px"
}));
});
export default TheDogeNFT;