@material-ui/core APIs
- Button
- Typography
- IconButton
- Grid
- TextField
- makeStyles
- Box
- List
- ListItem
- CircularProgress
- ListItemText
- Paper
- Divider
- Tooltip
- DialogContent
- Toolbar
- AppBar
- Card
- Dialog
- Container
- DialogTitle
- FormControl
- MenuItem
- Theme
- FormControlLabel
- CardContent
- CssBaseline
- DialogActions
- createStyles
- Select
- Link
- Checkbox
- DialogContentText
- Snackbar
- TableCell
- TableRow
- Table
- TableBody
- useMediaQuery
- InputAdornment
- ListItemIcon
- Switch
- Chip
- TableHead
- InputLabel
- withStyles
- Avatar
- ThemeProvider
- Drawer
- LinearProgress
- Menu
- CardActions
- createMuiTheme
- TableContainer
- Tab
- Tabs
- Slider
- ListItemSecondaryAction
- useTheme
- CardHeader
- Collapse
- Popover
- Radio
- Hidden
- FormGroup
- Fade
- InputBase
- FormHelperText
- ListSubheader
- Fab
- Input
- Badge
- Step
- AccordionDetails
- AccordionSummary
- RadioGroup
- ButtonGroup
- Slide
- ListItemAvatar
- Stepper
- SvgIcon
- Accordion
- StepLabel
- Modal
- FormLabel
- ClickAwayListener
- ButtonProps
- WithStyles
- Backdrop
- Popper
- createTheme
- ButtonBase
- CardMedia
- MuiThemeProvider
- OutlinedInput
- TextFieldProps
- Grow
- TablePagination
- TextareaAutosize
- darken
- CardActionArea
- TypographyProps
- StepButton
- SelectProps
- Zoom
- TableSortLabel
- styled
- lighten
- InputProps
- GridProps
- fade
- ThemeOptions
- BoxProps
- ExpansionPanel
- ExpansionPanelSummary
- ExpansionPanelDetails
- useScrollTrigger
- TooltipProps
- PopoverProps
- MobileStepper
- TableFooter
- Icon
- debounce
- Breadcrumbs
- BottomNavigation
- StepConnector
- SwipeableDrawer
- ButtonBaseProps
- MenuList
- DialogProps
- Portal
- SvgIconTypeMap
- capitalize
- alpha
- colors
- InputBaseProps
- NativeSelect
- ChipProps
- IconButtonProps
- emphasize
- SnackbarContent
- PaletteType
- CheckboxProps
- GridSize
- GridItemsAlignment
- SvgIconProps
- SnackbarOrigin
- NoSsr
- withTheme
- WithTheme
- TextareaAutosizeProps
- ExpansionPanelActions
- createSvgIcon
- SnackbarContentProps
- BreadcrumbsProps
- LinearProgressProps
- responsiveFontSizes
- ThemeProviderProps
- GridSpacing
- SliderTypeMap
- TabsActions
- PaperProps
- SnackbarCloseReason
- Alert
- Stack
- Skeleton
- ExtendButton
- ExtendButtonBase
- AlertProps
- ImageList
- ImageListItem
- StepContent
- getLuminance
- LinkProps
- StepIconProps
- ToolbarProps
- isWidthUp
- WithWidthProps
- isWidthDown
- PopperProps
- Options
- ServerStyleSheets
- WithWidth
- BottomNavigationAction
- InputAdornmentProps
- FormControlProps
- hexToRgb
- ListItemProps
- AppBarProps
- TypographyClassKey
- Autocomplete
- StylesProvider
Other Related APIs
- react#useState
- react#useEffect
- @material-ui/core#Button
- @material-ui/core#Typography
- @material-ui/core#Box
- @material-ui/core#Theme
- @material-ui/core#Container
- @material-ui/core#FormControl
- @material-ui/core#Grid
- @material-ui/core#Stepper
- @material-ui/core#Step
- @material-ui/core#StepLabel
- @material-ui/core#Table
- @material-ui/core#TableBody
- @material-ui/core#TableRow
- @material-ui/core#withStyles
- @material-ui/core#styled
- @material-ui/core/styles#makeStyles
- @material-ui/core/styles#createStyles
- @material-ui/core/styles#Theme
- @material-ui/core/styles#withStyles
@material-ui/core#StepConnector TypeScript Examples
The following examples show how to use
@material-ui/core#StepConnector.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: index.tsx From Demae with MIT License | 6 votes |
QontoConnector = withStyles({
alternativeLabel: {
top: 10,
left: "calc(-50% + 16px)",
right: "calc(50% + 16px)",
},
active: {
"& $line": {
borderColor: "#784af4",
},
},
completed: {
"& $line": {
borderColor: "#784af4",
},
},
line: {
borderColor: "#eaeaf0",
borderTopWidth: 3,
borderRadius: 1,
},
})(StepConnector)
Example #2
Source File: DeploymentLoader.tsx From homebase-app with MIT License | 6 votes |
ColorlibConnector = withStyles((theme: Theme) => ({
alternativeLabel: {
top: 22,
},
active: {
"& $line": {
backgroundColor: theme.palette.secondary.main,
},
},
completed: {
"& $line": {
backgroundColor: theme.palette.secondary.main,
},
},
line: {
height: 3,
border: 0,
backgroundColor: theme.palette.primary.light,
borderRadius: 1,
},
}))(StepConnector)
Example #3
Source File: styles.tsx From twilio-voice-notification-app with Apache License 2.0 | 6 votes |
CustomConnector = withStyles((theme: Theme) => ({
alternativeLabel: {
top: 22,
left: 'calc(-50% + 23px);',
},
active: {
'& $line': {
borderColor: theme.palette.primary.dark,
},
},
completed: {
'& $line': {
borderColor: theme.palette.primary.dark,
},
},
line: {
borderColor: theme.palette.grey[300],
borderTopWidth: 3,
borderRadius: 1,
},
}))(StepConnector)