@metamask/sdk-install-modal-web
Version:
MetaMask SDK Install Modal for Web
10 lines (9 loc) • 322 B
JavaScript
import { h } from "@stencil/core";
import "./resetStyles.css";
const widgetWrapperStyle = {
fontFamily: 'Roboto, sans-serif',
};
export const WidgetWrapper = ({ className, }, children) => {
return (h("div", { style: widgetWrapperStyle, class: className }, children));
};
//# sourceMappingURL=widget-wrapper.js.map