@npm.tangocode/tc_ui_components
Version:
[<img src="https://s3.amazonaws.com/tc-ui-components/documentationImages/tangoCodeLogo.png">](https://tangocode.com/) # TangoCode React UI Components #
24 lines (17 loc) • 400 B
Markdown
Pill Button Disabled:
```jsx
<PillList
items={['One', 'two', 'three', 'four five six seven']}
onClick={()=>{}}
styles={ {PillButtonStyles:{}} }
disable={true}
/>
```
Pill Button Enabled:
```jsx
<PillList
items={['One', 'two', 'three', 'four five six seven']}
onClick={()=>{}}
styles={ {PillButtonStyles:{}} }
/>
```