fix some props and make donate content better

This commit is contained in:
2023-01-01 14:27:24 +02:00
parent 6219c04df5
commit 9635a48051
14 changed files with 52 additions and 88 deletions

View File

@@ -1,9 +1,9 @@
<script lang="ts">
export let title: any;
export let position: any;
export let description: any;
export let icon: any;
export let positionStyles: any;
export let title: string = "";
export let position: string = "";
export let description: string = "";
export let icon: string = "";
export let positionStyles: string = "";
</script>
<div class="bg-secondary rounded-2 p-4 w-[18rem] sm:w-md flex flex-col">

View File

@@ -1,5 +1,5 @@
<script lang="ts">
export let url: any;
export let url: string = "";
let classes: string = "";
export { classes as class };
</script>