refactor(ui): put all main actions to the same bar
[e-mobility-charging-stations-simulator.git] / ui / web / src / components / buttons / ReloadButton.vue
index bf74ec9a330b738f9a00825aa757ed95879287b2..b5387045fcc32ec8bf5b1366c9f6c2bafe470445 100644 (file)
@@ -1,11 +1,11 @@
 <template>
-  <FlatButton>
+  <Button>
     <span :class="{ spin: loading }"> &#8635; </span>
-  </FlatButton>
+  </Button>
 </template>
 
 <script setup lang="ts">
-import FlatButton from '@/components/buttons/FlatButton.vue'
+import Button from '@/components/buttons/Button.vue'
 
 defineProps<{
   loading: boolean