Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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