You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
autoflow-web-console/src/components/button/IconArrowUp.vue

27 lines
509 B

<script setup>
import { defineEmits } from "vue";
const emit = defineEmits(["onClick"]);
const onClick = () => {
emit("onClick");
};
</script>
<template>
<v-tooltip location="bottom" text="Up">
<template v-slot:activator="{ props }">
<v-btn
icon="mdi-arrow-up"
class="ma-1"
color="brack"
density="comfortable"
elevation="0"
@click="onClick"
size="small"
v-bind="props"
></v-btn>
</template>
</v-tooltip>
</template>