bijlobke/src/components/ImageComponent.astro
2024-10-26 11:51:26 +02:00

12 lines
238 B
Plaintext

---
// Props passed to the component
const { src, alt } = Astro.props;
import { Image } from 'astro:assets';
---
<div class="image-container motion-safe:md:animate-fade motion-safe:md:opacity-0">
<Image src={src} alt={alt} />
</div>