Files
excel-download/simple_sns/front-end/src/assets/theme-dark/components/dialog/dialogTitle.js
2022-10-15 23:34:16 +09:00

34 lines
914 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.
*/
// Material Dashboard 2 React base styles
import typography from 'assets/theme-dark/base/typography';
// Material Dashboard 2 React helper functions
import pxToRem from 'assets/theme-dark/functions/pxToRem';
const { size } = typography;
const dialogTitle = {
styleOverrides: {
root: {
padding: pxToRem(16),
fontSize: size.xl,
},
},
};
export default dialogTitle;