polymech-astro/packages/imagetools/components/Img.astro
2025-08-26 12:17:29 +02:00

11 lines
281 B
Plaintext

---
import renderImg from "../api/renderImg.js";
import type { ImgConfigOptions } from "../types.d";
declare interface Props extends ImgConfigOptions {}
const { link, style, img } = await renderImg(Astro.props as Props);
---
<Fragment set:html={link + style + img} />