feat: all around btn UI

This commit is contained in:
oat_dev 2024-06-10 16:42:16 +07:00
parent f294a20161
commit d270e04ce7

View file

@ -0,0 +1,18 @@
<script setup lang="ts">
defineProps<{
label: string;
color?: string;
}>();
</script>
<template>
<div
class="q-pl-md q-pr-sm row items-center justify-between rounded"
:style="`border:1px solid ${color};color:${color}`"
>
{{ $t(label) }}
<q-icon name="mdi-arrow-right" class="q-ml-md" />
</div>
</template>
<style scoped></style>