# Chip Chips represent complex entities in small blocks, such as a contact. Chips can be used for various types of entities, including free form text, predefined text, rules, or contacts. Chips may also contain icons. ```jsx import Chip from 'react-toolbox/lib/chip'; const ChipTest = () => (
} /> } deletable /> } />
); ``` ## Properties | Name | Type | Default | Description| |:----------------|:------------|:----------------|:-----------| | `avatar` | `element` | | An `Avatar` component to use in a contact chip. | | `className` | `String` | `''` | Additional class name to provide custom styling.| | `deletable` | `Boolean` | `false` | If true, the chip will be rendered with a delete icon.| | `label` | `String` | `''` | label for the chip. | | `onDeleteClick` | `Function` | | Callback to be invoked when the delete icon is clicked. |