All files / src/theme/components index.ts

100% Statements 1/1
100% Branches 0/0
100% Functions 0/0
100% Lines 1/1

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33                              484x                                  
import { Components } from "@mui/material";
import { text } from "./text";
import { button, buttonBase } from "./button";
import { checkbox } from "./checkbox";
import { textField } from "./textField";
import { gSwitch } from "./switch";
import { cssBaseline } from "./cssBaseline";
import { iconButton } from "./iconButton";
import { formControlLabel } from "./formControlLabel";
import { menu } from "./menu";
import { dialog } from "./dialog";
import { backdrop } from "./backdrop";
import { select } from "./select";
import { tab, tabs } from "./tabs";
 
export const components: Components = {
  MuiTypography: text,
  MuiButton: button,
  MuiCheckbox: checkbox,
  MuiTextField: textField,
  MuiSwitch: gSwitch,
  MuiCssBaseline: cssBaseline,
  MuiIconButton: iconButton,
  MuiButtonBase: buttonBase,
  MuiFormControlLabel: formControlLabel,
  MuiMenu: menu,
  MuiDialog: dialog,
  MuiBackdrop: backdrop,
  MuiTab: tab,
  MuiTabs: tabs,
  MuiSelect: select,
};