|
- // third-party
- import { merge } from 'lodash';
-
- // project import
- import Badge from './Badge';
- import Button from './Button';
- import CardContent from './CardContent';
- import Checkbox from './Checkbox';
- import Chip from './Chip';
- import IconButton from './IconButton';
- import InputLabel from './InputLabel';
- import LinearProgress from './LinearProgress';
- import Link from './Link';
- import ListItemIcon from './ListItemIcon';
- import OutlinedInput from './OutlinedInput';
- import Tab from './Tab';
- import TableCell from './TableCell';
- import Tabs from './Tabs';
- import Typography from './Typography';
- import Textfield from './Textfield';
- import DataGrid from './DataGrid';
- import FormControlLabel from './FormControlLabel';
-
- // ==============================|| OVERRIDES - MAIN ||============================== //
-
- export default function ComponentsOverrides(theme) {
- return merge(
- Button(theme),
- Badge(theme),
- CardContent(),
- Checkbox(theme),
- Chip(theme),
- DataGrid(),
- FormControlLabel(),
- IconButton(theme),
- InputLabel(theme),
- LinearProgress(),
- Link(),
- ListItemIcon(),
- OutlinedInput(theme),
- Tab(theme),
- TableCell(theme),
- Tabs(),
- Textfield(),
- Typography()
- );
- }
|