feat(button): add stacked prop to ButtonSet

If set to true, buttons will be aligned vertically
This commit is contained in:
Eric Liu 2020-09-04 17:35:22 -07:00
commit c8e0a59474
2 changed files with 15 additions and 3 deletions

View file

@ -1,3 +1,14 @@
<div class:bx--btn-set="{true}" {...$$restProps}>
<script>
/**
* Set to `true` to stack the buttons vertically
* @type {boolean} [stacked=false]
*/
export let stacked = false;
</script>
<div
class:bx--btn-set="{true}"
class:bx--btn-set--stacked="{stacked}"
{...$$restProps}>
<slot />
</div>