DocSpace-buildtools/packages/asc-web-components/selected-item/README.md
2021-02-26 00:19:45 +03:00

27 lines
1.3 KiB
Markdown

# SelectedItem
### Usage
```js
import SelectedItem from "@appserver/components/selected-item";
```
```jsx
<SelectedItem
text="sample text"
onClick={() => console.log("onClose")}
></SelectedItem>
```
### Properties
| Props | Type | Required | Values | Default | Description |
| ------------ | :------------: | :------: | :----: | :-----: | ----------------------------------------------------- |
| `className` | `string` | - | - | - | Accepts class |
| `id` | `string` | - | - | - | Accepts id |
| `isDisabled` | `bool` | - | - | `false` | Tells when the button should present a disabled state |
| `isInline` | `bool` | - | - | `true` | Sets the 'display: inline-block' property |
| `onClose` | `func` | - | - | - | What the selected item will trigger when clicked |
| `style` | `obj`, `array` | - | - | - | Accepts css style |
| `text` | `string` | - | - | - | Selected item text |