Skip to content
Snippets Groups Projects
ShopButton.vue 329 B
<template>
    <button type="button" class="btn btn-primary" id="buttonStyle"><img src="@/assets/items/pigcoin.png" style="width: 2rem"> +{{ buttonText }}</button>
</template>

<script setup lang="ts">
defineProps<{ buttonText: string }>();
</script>

<style scoped>
    #buttonStyle {
        border-radius: 3rem;
    }
</style>