Button API
导入
import Button from '@mui/material/Button';
// 或
import { Button } from '@mui/material';
组件名称
在主题中,名称“MuiButton
”可用于提供默认属性(props),或者样式覆盖属性
ButtonBase 组件的属性也是可用的。
名称 | 类型 | 默认值 | 描述 |
---|---|---|---|
children | node | 组件的内容 | |
classes | object | 覆盖或扩展应用于组件的样式。请参阅下文CSS API 了解更多详情。 | |
color | 'inherit' | 'primary' | 'secondary' | 'success' | 'error' | 'info' | 'warning' | string | 'primary' | The color of the component. It supports both default and custom theme colors, which can be added as shown in the palette customization guide. |
component | elementType | The component used for the root node. Either a string to use a HTML element or a component. | |
disabled | bool | false | 如果被设置为 true ,那么该组件将会被禁用。 |
disableElevation | bool | false | 如果 true , 则不使用提升效果。 |
disableFocusRipple | bool | false | 如果设置为 true ,由键盘聚焦产生的涟漪效果将会被禁用。 |
disableRipple | bool | false | If true , the ripple effect is disabled.⚠️ Without a ripple there is no styling for :focus-visible by default. Be sure to highlight the element by applying separate styles with the focusVisibleClassName . |
endIcon | node | 放置在孩子之后的元素。 | |
fullWidth | bool | false | 如果设置为 true ,按钮将占据其容器的全部宽度。 |
href | string | 点击按钮时链接到的URL。 如果被定义, a 元素将被用作根节点. | |
size | 'small' | 'medium' | 'large' | string | 'medium' | The size of the button. small is equivalent to the dense button styling. |
startIcon | node | 放置在孩子之前的元素。 | |
sx | Array<func | object | bool> | func | object | The system prop that allows defining system overrides as well as additional CSS styles. See the `sx` page for more details. | |
variant | 'contained' | 'outlined' | 'text' | string | 'text' | 使用的变体。 |
ref
则会被传递到根元素中。继承
尽管上文没有明文记录, ButtonBase 组件 的属性(props) 在组件Button上同样是可用的。 你可以利用这一点来 指向嵌套组件CSS
规则名称 | 全局类名 | 描述 |
---|---|---|
root | .MuiButton-root | 应用于根元素的样式。 |
text | .MuiButton-text | 如果为 variant="text" ,应用于 根元素的样式。 |
textInherit | .MuiButton-textInherit | 如果为 variant="text" 和color="inherit" ,应用于 根元素的样式。 |
textPrimary | .MuiButton-textPrimary | Styles applied to 根元素 if variant="text" 和color="primary" . |
textSecondary | .MuiButton-textSecondary | Styles applied to 根元素 if variant="text" 和 color="secondary" . |
textSuccess | .MuiButton-textSuccess | Styles applied to the root element if variant="text" and color="success" . |
textError | .MuiButton-textError | Styles applied to the root element if variant="text" and color="error" . |
textInfo | .MuiButton-textInfo | Styles applied to the root element if variant="text" and color="info" . |
textWarning | .MuiButton-textWarning | Styles applied to the root element if variant="text" and color="warning" . |
outlined | .MuiButton-outlined | Styles applied to 根元素 if variant="outlined" . |
outlinedInherit | .MuiButton-outlinedInherit | Styles applied to 根元素 if variant="outlined" 和color="inherit" . |
outlinedPrimary | .MuiButton-outlinedPrimary | Styles applied to 根元素 if variant="outlined" 和color="primary" . |
outlinedSecondary | .MuiButton-outlinedSecondary | Styles applied to 根元素 if variant="outlined" 和color="secondary" . |
outlinedSuccess | .MuiButton-outlinedSuccess | Styles applied to the root element if variant="outlined" and color="success" . |
outlinedError | .MuiButton-outlinedError | Styles applied to the root element if variant="outlined" and color="error" . |
outlinedInfo | .MuiButton-outlinedInfo | Styles applied to the root element if variant="outlined" and color="info" . |
outlinedWarning | .MuiButton-outlinedWarning | Styles applied to the root element if variant="outlined" and color="warning" . |
contained | .MuiButton-contained | Styles applied to 根元素 if variant="contained" . |
containedInherit | .MuiButton-containedInherit | Styles applied to 根元素 if variant="contained" 和color="inherit" . |
containedPrimary | .MuiButton-containedPrimary | Styles applied to 根元素 if variant="contained" 和color="primary" . |
containedSecondary | .MuiButton-containedSecondary | Styles applied to 根元素 if variant="contained" 和 color="secondary" . |
containedSuccess | .MuiButton-containedSuccess | Styles applied to the root element if variant="contained" and color="success" . |
containedInfo | .MuiButton-containedInfo | Styles applied to the root element if variant="contained" and color="info" . |
containedError | .MuiButton-containedError | Styles applied to the root element if variant="contained" and color="error" . |
containedWarning | .MuiButton-containedWarning | Styles applied to the root element if variant="contained" and color="warning" . |
disableElevation | .MuiButton-disableElevation | Styles applied to 根元素 if disableElevation={true} . |
focusVisible | .Mui-focusVisible | Pseudo-class applied to the ButtonBase root element if the button is keyboard focused. |
disabled | .Mui-disabled | Pseudo-class applied to the root element if disabled={true} . |
colorInherit | .MuiButton-colorInherit | Styles applied to the root element if color="inherit" . |
textSizeSmall | .MuiButton-textSizeSmall | Styles applied to the root element if size="small" and variant="text" . |
textSizeMedium | .MuiButton-textSizeMedium | Styles applied to the root element if size="medium" and variant="text" . |
textSizeLarge | .MuiButton-textSizeLarge | Styles applied to the root element if size="large" and variant="text" . |
outlinedSizeSmall | .MuiButton-outlinedSizeSmall | Styles applied to the root element if size="small" and variant="outlined" . |
outlinedSizeMedium | .MuiButton-outlinedSizeMedium | Styles applied to the root element if size="medium" and variant="outlined" . |
outlinedSizeLarge | .MuiButton-outlinedSizeLarge | Styles applied to the root element if size="large" and variant="outlined" . |
containedSizeSmall | .MuiButton-containedSizeSmall | Styles applied to the root element if size="small" and variant="contained" . |
containedSizeMedium | .MuiButton-containedSizeMedium | Styles applied to the root element if size="medium" 和variant="contained" . |
containedSizeLarge | .MuiButton-containedSizeLarge | Styles applied to the root element if size="large" and variant="contained" . |
sizeSmall | .MuiButton-sizeSmall | Styles applied to 根元素 if size="small" . |
sizeMedium | .MuiButton-sizeMedium | Styles applied to 根元素 if size="medium" . |
sizeLarge | .MuiButton-sizeLarge | Styles applied to 根元素 if size="large" . |
fullWidth | .MuiButton-fullWidth | Styles applied to 根元素 if fullWidth={true} . |
startIcon | .MuiButton-startIcon | Styles applied to the startIcon element if supplied. |
endIcon | .MuiButton-endIcon | Styles applied to the endIcon element if supplied. |
iconSizeSmall | .MuiButton-iconSizeSmall | Styles applied to the icon element if supplied and size="small" . |
iconSizeMedium | .MuiButton-iconSizeMedium | Styles applied to the icon element if supplied and size="medium" . |
iconSizeLarge | .MuiButton-iconSizeLarge | Styles applied to the icon element if supplied and size="large" . |
您可以使用组件自定义选项对组件进行个性化:
- 具备 全局类名.
- 在自定义主体中,设定一个规则名称作为组件的
styleOverrides
属性的一部分。