bitmancer-accessible-components
Version:
A material ui bundling package which provides some additional features of some components.
10 lines • 478 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TestButton = void 0;
const jsx_runtime_1 = require("react/jsx-runtime");
const material_1 = require("@mui/material");
function TestButton({ children, onClick }) {
return ((0, jsx_runtime_1.jsx)(material_1.Button, { onClick: onClick, sx: { backgroundColor: 'pink', color: 'white' }, children: children }));
}
exports.TestButton = TestButton;
//# sourceMappingURL=test-button.js.map