11 lines
128 B
Svelte
11 lines
128 B
Svelte
<script>
|
|
export let icon;
|
|
export let info;
|
|
</script>
|
|
|
|
<div
|
|
class="p-2 cursor-pointer text-center text-3xl"
|
|
>
|
|
{icon}
|
|
</div>
|