Files
gpx.studio/website/src/lib/components/docs/DocsImage.svelte

12 lines
339 B
Svelte
Raw Normal View History

2024-07-09 17:49:18 +02:00
<script lang="ts">
export let src;
export let alt: string;
</script>
<div class="flex flex-col items-center py-6 w-full">
2024-09-23 14:55:38 +02:00
<div class="rounded-md overflow-hidden overflow-clip shadow-xl mx-auto">
2024-07-09 17:49:18 +02:00
<enhanced:img {src} {alt} class="w-full max-w-3xl" />
</div>
<p class="text-center text-sm text-muted-foreground mt-2">{alt}</p>
</div>