25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

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