10 lines
178 B
Text
10 lines
178 B
Text
---
|
|
import { Picture as AstroPicture } from "astro:assets";
|
|
---
|
|
|
|
<AstroPicture
|
|
src={Astro.props.src}
|
|
alt={Astro.props.alt}
|
|
formats={["avif", "webp"]}
|
|
{...Astro.props}
|
|
/>
|