import { CSSProperties, ExtendedCSSProperties } from '../Common'; export type CustomComponent = null | string | ((props: T) => string | any); export interface ITestimonialComponent { testimonial1: string; testimonial2?: string; testimonial3?: string; testimonial4?: string; testimonial5?: string; } export interface ILogosComponent { layout?: 'horizontal' | 'vertical'; logos?: { logo1: string; logo2?: string; logo3?: string; logo4?: string; logo5?: string; logo6?: string; }; } export type SideElement = 'testimonials' | 'values' | 'logos'; export interface InputThemeOptions { /** * Input label style */ label?: ExtendedCSSProperties; /** * Input base style for standard state */ base?: ExtendedCSSProperties & { placeholderColor?: string; }; /** * Input style for hover state */ hover?: ExtendedCSSProperties; /** * Input style for active state */ active?: ExtendedCSSProperties; /** * Input style for focus state */ focus?: ExtendedCSSProperties; /** * Input style for disabled state */ disabled?: ExtendedCSSProperties; /** * Input style for disabled state */ error?: ExtendedCSSProperties; } export interface ButtonThemeOptions { /** * Button base style for standard state */ base?: ExtendedCSSProperties; /** * Button style for hover state */ hover?: ExtendedCSSProperties; /** * Button style for active state */ active?: ExtendedCSSProperties; /** * Button style for focus state */ focus?: ExtendedCSSProperties; /** * Button style for disabled state */ disabled?: ExtendedCSSProperties; /** * Icon style displayed inside the button element */ icon?: ExtendedCSSProperties; } export interface LoginBoxBackgroundTheme { backgroundColor?: CSSProperties['backgroundColor']; backgroundImage?: CSSProperties['backgroundImage']; backgroundSize?: CSSProperties['backgroundSize']; backgroundRepeat?: CSSProperties['backgroundRepeat']; backgroundPosition?: CSSProperties['backgroundPosition']; } export interface ComponentsOptions { /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/Alert */ MuiAlert?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/AlertTitle */ MuiAlertTitle?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/AppBar */ MuiAppBar?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/Autocomplete */ MuiAutocomplete?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/Avatar */ MuiAvatar?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/AvatarGroup */ MuiAvatarGroup?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/Backdrop */ MuiBackdrop?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/Badge */ MuiBadge?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/BottomNavigation */ MuiBottomNavigation?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/BottomNavigationAction */ MuiBottomNavigationAction?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/Breadcrumbs */ MuiBreadcrumbs?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/Button */ MuiButton?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/ButtonBase */ MuiButtonBase?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/ButtonGroup */ MuiButtonGroup?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/Card */ MuiCard?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/CardActionArea */ MuiCardActionArea?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/CardActions */ MuiCardActions?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/CardContent */ MuiCardContent?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/CardHeader */ MuiCardHeader?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/CardMedia */ MuiCardMedia?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/Checkbox */ MuiCheckbox?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/Chip */ MuiChip?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/CircularProgress */ MuiCircularProgress?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/Collapse */ MuiCollapse?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/Container */ MuiContainer?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/CssBaseline */ MuiCssBaseline?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/Dialog */ MuiDialog?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/DialogActions */ MuiDialogActions?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/DialogContent */ MuiDialogContent?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/DialogContentText */ MuiDialogContentText?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/DialogTitle */ MuiDialogTitle?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/Divider */ MuiDivider?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/Drawer */ MuiDrawer?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/Accordion */ MuiAccordion?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/AccordionActions */ MuiAccordionActions?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/AccordionDetails */ MuiAccordionDetails?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/AccordionSummary */ MuiAccordionSummary?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/Fab */ MuiFab?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/FilledInput */ MuiFilledInput?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/FormControl */ MuiFormControl?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/FormControlLabel */ MuiFormControlLabel?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/FormGroup */ MuiFormGroup?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/FormHelperText */ MuiFormHelperText?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/FormLabel */ MuiFormLabel?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/Grid */ MuiGrid?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/ImageList */ MuiImageList?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/ImageListItem */ MuiImageListItem?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/ImageListItemBar */ MuiImageListItemBar?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/Icon */ MuiIcon?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/IconButton */ MuiIconButton?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/Input */ MuiInput?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/InputAdornment */ MuiInputAdornment?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/InputBase */ MuiInputBase?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/InputLabel */ MuiInputLabel?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/LinearProgress */ MuiLinearProgress?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/Link */ MuiLink?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/List */ MuiList?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/ListItem */ MuiListItem?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/ListItemAvatar */ MuiListItemAvatar?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/ListItemIcon */ MuiListItemIcon?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/ListItemSecondaryAction */ MuiListItemSecondaryAction?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/ListItemText */ MuiListItemText?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/ListSubheader */ MuiListSubheader?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/Menu */ MuiMenu?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/MenuItem */ MuiMenuItem?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/MobileStepper */ MuiMobileStepper?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/NativeSelect */ MuiNativeSelect?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/OutlinedInput */ MuiOutlinedInput?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/Pagination */ MuiPagination?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/PaginationItem */ MuiPaginationItem?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/Paper */ MuiPaper?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/Popover */ MuiPopover?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/Radio */ MuiRadio?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/ScopedCssBaseline */ MuiScopedCssBaseline?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/Select */ MuiSelect?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/Slider */ MuiSlider?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/Snackbar */ MuiSnackbar?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/SnackbarContent */ MuiSnackbarContent?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/SpeedDial */ MuiSpeedDial?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/SpeedDialAction */ MuiSpeedDialAction?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/SpeedDialIcon */ MuiSpeedDialIcon?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/Step */ MuiStep?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/StepButton */ MuiStepButton?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/StepConnector */ MuiStepConnector?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/StepContent */ MuiStepContent?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/StepIcon */ MuiStepIcon?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/StepLabel */ MuiStepLabel?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/Stepper */ MuiStepper?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/SvgIcon */ MuiSvgIcon?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/Switch */ MuiSwitch?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/Tab */ MuiTab?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/Table */ MuiTable?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/TableBody */ MuiTableBody?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/TableCell */ MuiTableCell?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/TableContainer */ MuiTableContainer?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/TableFooter */ MuiTableFooter?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/TableHead */ MuiTableHead?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/TablePagination */ MuiTablePagination?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/TableRow */ MuiTableRow?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/TableSortLabel */ MuiTableSortLabel?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/Tabs */ MuiTabs?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/TextField */ MuiTextField?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/ToggleButton */ MuiToggleButton?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/ToggleButtonGroup */ MuiToggleButtonGroup?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/Toolbar */ MuiToolbar?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/Tooltip */ MuiTooltip?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/TouchRipple */ MuiTouchRipple?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/Typography */ MuiTypography?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/UseMediaQuery */ MuiUseMediaQuery?: any; /** * Refer to Material UI theming guideline. * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/styles/components.d.ts * - https://github.com/mui-org/material-ui/blob/master/packages/mui-material/src/WithWidth */ MuiWithWidth?: any; }