Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 

48 rindas
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. }