UNPKG

@mui/joy

Version:

Joy UI is an open-source React component library that implements MUI's own design principles. It's comprehensive and can be used in production out of the box.

16 lines (15 loc) 389 B
import { OverridableComponent } from '@mui/types'; import { ChipTypeMap } from './ChipProps'; /** * Chips represent complex entities in small blocks, such as a contact. * * Demos: * * - [Chip](https://mui.com/joy-ui/react-chip/) * * API: * * - [Chip API](https://mui.com/joy-ui/api/chip/) */ declare const Chip: OverridableComponent<ChipTypeMap<{}, "div">>; export default Chip;