portfolio/src/lib/Card.svelte

16 lines
431 B
Svelte
Raw Normal View History

2023-06-18 12:18:12 +00:00
<script lang="ts">
export let icon: any;
export let title: string;
export let description: string;
</script>
<div class="card variant-glass md:p-10 shadow-lg space-y-4 text-center btn whitespace-normal grid">
2023-12-13 17:16:45 +00:00
<div class="mx-auto variant-glass rounded-2xl p-2" style="width: 50px; height: 50px;">
2023-06-18 12:18:12 +00:00
<svelte:component this={icon} />
2023-06-18 14:10:13 +00:00
</div>
2023-06-18 12:18:12 +00:00
<h3 class="h3">{title}</h3>
<p>{description}</p>
</div>