add: design, icons, calculation

Implemented new design for PriceCards, added some icons for visuals, added calculation per price card
This commit is contained in:
Fiona Lena Urban 2025-02-13 21:21:56 +01:00
parent 878b7e06e8
commit aa9c936f80
11 changed files with 180 additions and 26 deletions

View file

@ -0,0 +1,9 @@
<template>
<button class="Button" @click="emit('click')">
<slot />
</button>
</template>
<script setup lang="ts">
const emit = defineEmits(['click'])
</script>