@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
@material-ui/core#ExtendButton TypeScript Examples
The following examples show how to use
@material-ui/core#ExtendButton.
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: Button.tsx From storefront with MIT License | 5 votes |
Button = (({
as,
children,
circle = false,
disabled = false,
href,
loading = false,
prefetch,
size = 'medium',
sx: sxProp,
...props
}: ButtonProps) => {
const handleTrack = () => {
ReactGA.outboundLink(
{ label: typeof children === 'string' ? `Clicked ${children}` : 'Clicked link' },
() => {},
);
};
const sx: typeof sxProp = {
...sxProp,
...(circle && {
minWidth: 0,
p: 0,
...(size === 'small'
? {
borderRadius: 20,
height: 20,
width: 20,
}
: {
borderRadius: 44,
height: 44,
width: 44,
}),
}),
};
return href == null ? (
<MuiButton disabled={disabled || loading} size={size} sx={sx} {...props}>
{loading && (
<Box
sx={{
display: 'flex',
left: '50%',
position: 'absolute',
transform: 'translate(-50%)',
visibility: 'visible',
}}
>
<CircularProgress color="inherit" size={26} />
</Box>
)}
<Box component="span" sx={loading ? { visibility: 'hidden' } : {}}>
{children}
</Box>
</MuiButton>
) : /^https?:/.test(href.toString()) ? (
<MuiButton
href={href.toString()}
size={size}
sx={sx}
onClick={handleTrack}
{...(props as ButtonProps<'a'>)}
>
{children}
</MuiButton>
) : (
<Link passHref as={as} href={href} prefetch={prefetch}>
<MuiButton component="a" size={size} sx={sx} {...(props as ButtonProps<'a'>)}>
{children}
</MuiButton>
</Link>
);
}) as ExtendButton<TypeMap>