This repository has been archived on 2025-12-24. You can view files and clone it, but cannot push or open issues or pull requests.
site-template/packages/imagetoolsOSR/components/Image.astro
2025-03-07 14:59:06 +01:00

9 lines
264 B
Plaintext

---
import renderImage from "../api/renderImg.js"
import type { PictureConfigOptions as ImageConfigOptions } from "../types.d"
const { link, style, image } = await renderImage(
Astro.props as ImageConfigOptions
)
---
<Fragment set:html={link + style + image} />