Chip API
Demos
For examples and details on the usage of this React component, visit the component demo pages:
Import
import Chip from '@mui/material/Chip';
// or
import { Chip } from '@mui/material';Chips represent complex entities in small blocks, such as a contact.
Props
Props of the native component are also available.
This prop isn't supported. Use the component prop if you need to change the children structure.
Type:
unsupportedPropOverride or extend the styles applied to the component.
See CSS API below for more details.
Type:
objectIf 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.
Type:
boolThe color of the component. It supports both default and custom theme colors, which can be added as shown in the palette customization guide.
Type:
'default' | 'primary' | 'secondary' | 'error' | 'info' | 'success' | 'warning' | stringDefault:
'default'The component used for the root node. Either a string to use a HTML element or a component.
Type:
elementTypeCallback fired when the delete icon is clicked. If set, the delete icon will be shown.
Type:
funcIf true, allows the disabled chip to escape focus. If false, allows the disabled chip to receive focus.
Type:
boolDefault:
falseThe system prop that allows defining system overrides as well as additional CSS styles.
See the `sx` page for more details.
Type:
Array<func | object | bool> | func | objectref is forwarded to the root element.Theme default props
You can use MuiChip to change the default props of this component with the theme.
CSS
The following class names are useful for styling with CSS (the state classes are marked).
To learn more, visit the component customization page.
Styles applied to the root element if onClick is defined or clickable={true}.
Styles applied to the root element if onClick and color="primary" is defined or clickable={true}.
Styles applied to the root element if onClick and color="secondary" is defined or clickable={true}.
Styles applied to the root element if onDelete and color="primary" is defined.
Styles applied to the root element if onDelete and color="secondary" is defined.
Styles applied to the root element if variant="outlined" and color="primary".
Styles applied to the root element if variant="outlined" and color="secondary".
Styles applied to the root element if variant="filled" and color="primary".
Styles applied to the root element if variant="filled" and color="secondary".
Styles applied to the avatar element if color="primary".
Styles applied to the avatar element if color="secondary".
Styles applied to the icon element if color="secondary".
Styles applied to the deleteIcon element if color="primary" and variant="filled".
Styles applied to the deleteIcon element if color="secondary" and variant="filled".
Styles applied to the deleteIcon element if color="primary" and variant="outlined".
Styles applied to the deleteIcon element if color="secondary" and variant="outlined".
Styles applied to the deleteIcon element if color="primary" and variant="filled".
Styles applied to the deleteIcon element if color="secondary" and variant="filled".
You can override the style of the component using one of these customization options:
- With a global class name.
- With a rule name as part of the component's
styleOverridesproperty in a custom theme.