portfolio/src/lib/SkillCard.svelte

19 lines
452 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-06-18 14:10:13 +00:00
<div
2023-06-18 12:18:12 +00:00
class="mx-auto variant-glass rounded-2xl p-2"
2023-06-18 14:10:13 +00:00
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>