mirror of https://github.com/abpframework/abp.git
committed by
GitHub
1 changed files with 37 additions and 0 deletions
@ -0,0 +1,37 @@ |
|||
# Button groups |
|||
|
|||
## Introduction |
|||
|
|||
`abp-button-group` is the main container for grouped button elements. |
|||
|
|||
Basic usage: |
|||
|
|||
````csharp |
|||
<abp-button-group> |
|||
<abp-button button-type="Secondary">Left</abp-button> |
|||
<abp-button button-type="Secondary">Middle</abp-button> |
|||
<abp-button button-type="Secondary">Right</abp-button> |
|||
</abp-button-group> |
|||
```` |
|||
|
|||
## Demo |
|||
|
|||
See the [button groups demo page](https://bootstrap-taghelpers.abp.io/Components/Button-groups) to see it in action. |
|||
|
|||
## Attributes |
|||
|
|||
### direction |
|||
|
|||
A value indicates the direction of the buttons. Should be one of the following values: |
|||
|
|||
* `Horizontal` (default value) |
|||
* `Vertical` |
|||
|
|||
### size |
|||
|
|||
A value indicates the size of the buttons in the group. Should be one of the following values: |
|||
|
|||
* `Default` (default value) |
|||
* `Small` |
|||
* `Medium` |
|||
* `Large` |
|||
Loading…
Reference in new issue