12 lines
238 B
Plaintext
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>
|