DocSpace-buildtools/web/ASC.Web.Storybook/stories/selected-item/base/README.md

29 lines
1.3 KiB
Markdown
Raw Normal View History

# SelectedItem
## Usage
```js
import { SelectedItem } from 'asc-web-components';
```
#### Usage
```js
<SelectedItem text="sample text" onClick={()=>console.log("onClose")}></SelectedItem>
```
#### Properties
| Props | Type | Required | Values | Default | Description |
| ------------------ | -------- | :------: | --------------------------- | --------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `isDisabled` | `bool` | - | - | false | Tells when the button should present a disabled state |
| `text` | `string` | - | - | - | Selected item text |
| `isInline` | `bool` | - | - | true | Sets the 'display: inline-block' property |
| `onClose` | `function` | - | - | - | What the selected item will trigger when clicked |