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