708d6c448b2dec262c23d8ba11772069a49a3ccd
[e-mobility-charging-stations-simulator.git] / ui / web / src / components / buttons / Button.vue
1 <template>
2 <button
3 class="button"
4 type="button"
5 >
6 <slot />
7 </button>
8 </template>
9
10 <style>
11 .button {
12 display: flex;
13 flex: auto;
14 justify-content: center;
15 align-items: center;
16 font: small-caption;
17 }
18 </style>