20 lines
298 B
Vue
20 lines
298 B
Vue
<script setup lang="ts"></script>
|
|
|
|
<template>
|
|
<div class="btn-group">
|
|
<slot></slot>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
.btn-group {
|
|
display: flex;
|
|
flex-flow: row wrap;
|
|
justify-content: space-evenly;
|
|
|
|
> * {
|
|
flex: var(--button-group-flex);
|
|
margin: 1rem 0;
|
|
}
|
|
}
|
|
</style>
|