29 lines
686 B
JavaScript
29 lines
686 B
JavaScript
/**
|
|
=========================================================
|
|
* Material Dashboard 2 React - v2.1.0
|
|
=========================================================
|
|
|
|
* Product Page: https://www.creative-tim.com/product/material-dashboard-react
|
|
* Copyright 2022 Creative Tim (https://www.creative-tim.com)
|
|
|
|
Coded by www.creative-tim.com
|
|
|
|
=========================================================
|
|
|
|
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
*/
|
|
|
|
const appBar = {
|
|
defaultProps: {
|
|
color: 'transparent',
|
|
},
|
|
|
|
styleOverrides: {
|
|
root: {
|
|
boxShadow: 'none',
|
|
},
|
|
},
|
|
};
|
|
|
|
export default appBar;
|