Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

index.js 1.2 KiB

2 lat temu
2 lat temu
2 lat temu
2 lat temu
2 lat temu
2 lat temu
2 lat temu
2 lat temu
2 lat temu
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. }