DocSpace-client/packages/shared/components/toggle-content/README.md

27 lines
1.1 KiB
Markdown
Raw Normal View History

# ToggleContent
ToggleContent allow you to adding information, which you may hide/show by clicking header
### Usage
```js
import { ToggleContent } from "@docspace/shared/components";
```
```jsx
<ToggleContent>
<span>Some text</span>
</ToggleContent>
```
#### Properties
| Props | Type | Required | Values | Default | Description |
| -------------- | :------------: | :------: | :----: | :----------: | --------------------------- |
| `className` | `string` | - | - | - | Accepts class |
| `id` | `string` | - | - | - | Accepts id |
| `isOpen` | `bool` | - | - | `false` | State of component |
| `label` | `text` | ✅ | - | `Some label` | Define label for header |
| `style` | `obj`, `array` | - | - | - | Accepts css style |
| `enableToggle` | `bool` | - | - | `true` | Show/hide toggle functional |