Update chip children prop type, readme

old
Lucas Correia 2016-04-04 11:34:48 +02:00
parent dff8a07949
commit 1a4d3639a5
2 changed files with 5 additions and 5 deletions

View File

@ -30,7 +30,7 @@ const Chip = ({children, className, deletable, onDeleteClick, ...other}) => {
};
Chip.propTypes = {
children: PropTypes.string,
children: PropTypes.node,
className: PropTypes.string,
deletable: PropTypes.bool,
onDeleteClick: PropTypes.func

View File

@ -19,16 +19,16 @@ const ChipTest = () => (
<Chip deletable>Deletable Chip</Chip>
<Chip avatar>
<Chip>
<Avatar style={{backgroundColor: 'deepskyblue'}} icon="folder" />
<span>Avatar Chip</span>
</Chip>
<Chip avatar>
<Chip>
<Avatar title="A" /><span>Initial chip</span>
</Chip>
<Chip avatar>
<Chip>
<Avatar><img src="https://placeimg.com/80/80/animals"/></Avatar>
<span>Image contact chip</span>
</Chip>
@ -40,7 +40,7 @@ const ChipTest = () => (
| Name | Type | Default | Description|
|:----------------|:------------|:----------------|:-----------|
| `avatar` | `Boolean` | `false` | If true, the chip will include styles to accommodate an `Avatar`. |
| `children` | `Node` | | Child components, usually `Avatar` and inline elements. |
| `className` | `String` | `''` | Additional class name to provide custom styling.|
| `deletable` | `Boolean` | `false` | If true, the chip will be rendered with a delete icon.|
| `onDeleteClick` | `Function` | | Callback to be invoked when the delete icon is clicked. |