9 lines
297 B
Plaintext
9 lines
297 B
Plaintext
---
|
|
import Image from '@components/ui/images/Image.astro';
|
|
|
|
const { src, alt } = Astro.props;
|
|
|
|
---
|
|
|
|
<Image src={src} alt={alt} style="color: transparent; width: 32px; height: 32px; object-fit: contain; max-height: 100%; max-width: 100%;" draggable="false" loading="lazy" width="32" height="32" />
|