12 lines
268 B
Plaintext
12 lines
268 B
Plaintext
---
|
|
import { Image } from "astro:assets";
|
|
const { src, width, height, alt } = Astro.props;
|
|
let size;
|
|
if (width || height) {
|
|
size = `width="${width}" height="${height}"`
|
|
} else {
|
|
size = `inferSize`
|
|
}
|
|
---
|
|
|
|
<Image src={src} alt={alt} inferSize class="img-fluid"/> |