@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
19 lines • 608 B
JavaScript
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
var _excluded = ["children", "sx"];
import React from 'react';
import { Button as MButton } from '@mui/material';
import { jsx as _jsx } from "react/jsx-runtime";
var Button = function Button(_ref) {
var children = _ref.children,
sx = _ref.sx,
props = _objectWithoutProperties(_ref, _excluded);
return /*#__PURE__*/_jsx(MButton, Object.assign({
sx: Object.assign({
textTransform: 'none',
borderRadius: '15px'
}, sx)
}, props, {
children: children
}));
};
export default Button;