Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

48 righe
1.2 KiB

  1. // third-party
  2. import { merge } from 'lodash';
  3. // project import
  4. import Badge from './Badge';
  5. import Button from './Button';
  6. import CardContent from './CardContent';
  7. import Checkbox from './Checkbox';
  8. import Chip from './Chip';
  9. import IconButton from './IconButton';
  10. import InputLabel from './InputLabel';
  11. import LinearProgress from './LinearProgress';
  12. import Link from './Link';
  13. import ListItemIcon from './ListItemIcon';
  14. import OutlinedInput from './OutlinedInput';
  15. import Tab from './Tab';
  16. import TableCell from './TableCell';
  17. import Tabs from './Tabs';
  18. import Typography from './Typography';
  19. import Textfield from './Textfield';
  20. import DataGrid from './DataGrid';
  21. import FormControlLabel from './FormControlLabel';
  22. // ==============================|| OVERRIDES - MAIN ||============================== //
  23. export default function ComponentsOverrides(theme) {
  24. return merge(
  25. Button(theme),
  26. Badge(theme),
  27. CardContent(),
  28. Checkbox(theme),
  29. Chip(theme),
  30. DataGrid(),
  31. FormControlLabel(),
  32. IconButton(theme),
  33. InputLabel(theme),
  34. LinearProgress(),
  35. Link(),
  36. ListItemIcon(),
  37. OutlinedInput(theme),
  38. Tab(theme),
  39. TableCell(theme),
  40. Tabs(),
  41. Textfield(),
  42. Typography()
  43. );
  44. }