---
name: Chip
menu: Components
route: /components/chip
---

import { Chip } from './';
import { Playground } from 'docz';

# Chip

The `<Chip/>` component.

## Import

```js
import { Chip } from '@firstclasspostcodes/sw13';
// or
import { Chip } from '@firstclasspostcodes/sw13/lib/components/Chip';
```

## Example

<Playground>
  <Chip onClick={console.log} label="test" />
  <Chip label="test" />
  <Chip label="test" />
</Playground>