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

20 lines
507 B
Plaintext

---
import renderBackgroundPicture from "../api/renderBackgroundPicture.js";
import { BackgroundPictureConfigOptions } from "../types.d";
declare interface Props
extends Pick<
BackgroundPictureConfigOptions,
Exclude<keyof BackgroundPictureConfigOptions, "content">
> {}
const content = await Astro.slots.render("default");
const { link, style, htmlElement } = await renderBackgroundPicture({
content,
...(Astro.props as Props),
});
---
<Fragment set:html={link + style + htmlElement} />