Chip API
Importação
import Chip from '@mui/material/Chip';
// ou
import { Chip } from '@mui/material';
Chips represent complex entities in small blocks, such as a contact.
Nome do componente
The nameMuiChip
can be used when providing default props or style overrides in the theme.Propriedades
Propriedades do componente nativo também estão disponíveis.
Nome | Tipo | Padrão | Descrição |
---|---|---|---|
avatar | element | The Avatar for the Card Header. | |
children | unsupportedProp | This prop isn't supported. Use the component prop if you need to change the children structure. | |
classes | object | Sobrescreve ou extende os estilos aplicados para o componente. Veja a API CSS abaixo para maiores detalhes. | |
clickable | bool | false | If true , the chip will appear clickable, and will raise when pressed, even if the onClick prop is not defined. If false , the chip will not appear clickable, even if onClick prop is defined. This can be used, for example, along with the component prop to indicate an anchor Chip is clickable. Note: this controls the UI and does not affect the onClick event. |
color | 'default' | 'primary' | 'secondary' | 'error' | 'info' | 'success' | 'warning' | string | 'default' | 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. | |
deleteIcon | element | Override the default delete icon element. Shown only if onDelete is set. | |
disabled | bool | false | Se true , o componente está desabilitado. |
icon | element | Icon element. | |
label | node | O conteúdo do componente. | |
onDelete | func | Callback fired when the delete icon is clicked. If set, the delete icon will be shown. | |
size | 'medium' | 'small' | string | 'medium' | The size of the autocomplete. |
skipFocusWhenDisabled | bool | false | |
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 | 'filled' | 'outlined' | string | 'filled' | A variante a usar. |
O
ref
é encaminhado para o elemento raiz.CSS
Nome da regra | Classe global | Descrição |
---|---|---|
root | .MuiChip-root | Estilos aplicados ao elemento raiz. |
sizeSmall | .MuiChip-sizeSmall | Estilos aplicados para o elemento raiz se size="small" . |
sizeMedium | .MuiChip-sizeMedium | Estilos aplicados para o elemento raiz se size="medium" . |
colorError | .MuiChip-colorError | |
colorInfo | .MuiChip-colorInfo | |
colorPrimary | .MuiChip-colorPrimary | Estilos aplicados para o elemento raiz se color="primary" . |
colorSecondary | .MuiChip-colorSecondary | Estilos aplicados para o elemento raiz se color="secondary" . |
colorSuccess | .MuiChip-colorSuccess | |
colorWarning | .MuiChip-colorWarning | |
disabled | .Mui-disabled | Pseudo-class aplicada a o elemento raiz se disabled={true} . |
clickable | .MuiChip-clickable | Estilos aplicados para o elemento raiz se onClick is defined or clickable={true} . |
clickableColorPrimary | .MuiChip-clickableColorPrimary | Estilos aplicados para o elemento raiz se onClick and color="primary" is defined or clickable={true} . |
clickableColorSecondary | .MuiChip-clickableColorSecondary | Estilos aplicados para o elemento raiz se onClick and color="secondary" is defined or clickable={true} . |
deletable | .MuiChip-deletable | Estilos aplicados para o elemento raiz se onDelete is defined. |
deletableColorPrimary | .MuiChip-deletableColorPrimary | Estilos aplicados para o elemento raiz se onDelete and color="primary" is defined. |
deletableColorSecondary | .MuiChip-deletableColorSecondary | Estilos aplicados para o elemento raiz se onDelete and color="secondary" is defined. |
outlined | .MuiChip-outlined | Estilos aplicados para o elemento raiz se variant="outlined" . |
filled | .MuiChip-filled | Estilos aplicados para o elemento raiz se variant="filled" . |
outlinedPrimary | .MuiChip-outlinedPrimary | Estilos aplicados para o elemento raiz se variant="outlined" and color="primary" . |
outlinedSecondary | .MuiChip-outlinedSecondary | Estilos aplicados para o elemento raiz se variant="outlined" and color="secondary" . |
filledPrimary | .MuiChip-filledPrimary | Styles applied to the root element if variant="filled" and color="primary" . |
filledSecondary | .MuiChip-filledSecondary | Styles applied to the root element if variant="filled" and color="secondary" . |
avatar | .MuiChip-avatar | Estilos aplicados a the avatar element. |
avatarSmall | .MuiChip-avatarSmall | Estilos aplicados para the avatar element se size="small" . |
avatarMedium | .MuiChip-avatarMedium | Estilos aplicados para the avatar element se size="medium" . |
avatarColorPrimary | .MuiChip-avatarColorPrimary | Estilos aplicados para the avatar element se color="primary" . |
avatarColorSecondary | .MuiChip-avatarColorSecondary | Estilos aplicados para the avatar element se color="secondary" . |
icon | .MuiChip-icon | Estilos aplicados a the icon element. |
iconSmall | .MuiChip-iconSmall | Estilos aplicados para the icon element se size="small" . |
iconMedium | .MuiChip-iconMedium | Estilos aplicados para the icon element se size="medium" . |
iconColorPrimary | .MuiChip-iconColorPrimary | Estilos aplicados para the icon element se color="primary" . |
iconColorSecondary | .MuiChip-iconColorSecondary | Estilos aplicados para the icon element se color="secondary" . |
label | .MuiChip-label | Estilos aplicados a the label `span` element. |
labelSmall | .MuiChip-labelSmall | Estilos aplicados para the label `span` element se size="small" . |
labelMedium | .MuiChip-labelMedium | Estilos aplicados para the label `span` element se size="medium" . |
deleteIcon | .MuiChip-deleteIcon | Estilos aplicados a the deleteIcon element. |
deleteIconSmall | .MuiChip-deleteIconSmall | Estilos aplicados para the deleteIcon element se size="small" . |
deleteIconMedium | .MuiChip-deleteIconMedium | Estilos aplicados para the deleteIcon element se size="medium" . |
deleteIconColorPrimary | .MuiChip-deleteIconColorPrimary | Estilos aplicados para the deleteIcon element se color="primary" and variant="filled" . |
deleteIconColorSecondary | .MuiChip-deleteIconColorSecondary | Estilos aplicados para the deleteIcon element se color="secondary" and variant="filled" . |
deleteIconOutlinedColorPrimary | .MuiChip-deleteIconOutlinedColorPrimary | Estilos aplicados para the deleteIcon element se color="primary" and variant="outlined" . |
deleteIconOutlinedColorSecondary | .MuiChip-deleteIconOutlinedColorSecondary | Estilos aplicados para the deleteIcon element se color="secondary" and variant="outlined" . |
deleteIconFilledColorPrimary | .MuiChip-deleteIconFilledColorPrimary | Styles applied to the deleteIcon element if color="primary" and variant="filled" . |
deleteIconFilledColorSecondary | .MuiChip-deleteIconFilledColorSecondary | Styles applied to the deleteIcon element if color="secondary" and variant="filled" . |
focusVisible | .Mui-focusVisible | Pseudo-class aplicada a o elemento raiz se teclado focado. |
Você pode sobrescrever o estilo do componente usando uma dessas opções de customização:
- With a global class name.
- With a rule name as part of the component's
styleOverrides
property in a custom theme.