docs: add documentation for ControlButton

This commit is contained in:
bcakmakoglu
2022-06-15 19:31:20 +02:00
committed by Braks
parent 3162b79f54
commit 33cd638fd9
2 changed files with 43 additions and 2 deletions
@@ -0,0 +1,26 @@
# Control Button
You can use the existing `ControlButton` component to create new control buttons.
## Usage
To use the component pass the `ControlButton` component as a child to the [`Controls`](/guide/components/control-button.html/) component.
```vue
<template>
<VueFlow>
<Controls>
<ControlButton>
<i class="fa fa-plus"></i>
</ControlButton>
</Controls>
</VueFlow>
</template>
```
## Slots
| Name | Definition |
|---------|------------------------------------------------------|
| default | inner slot of btn (is wrapped by a `<button>` element) |