astro-ghostcms/.pnpm-store/v3/files/c7/fd86ace538923114adb5f207936...

21 lines
417 B
Plaintext

---
import type { HTMLAttributes } from "astro/types";
const { props } = Astro;
type Link = HTMLAttributes<"link">;
---
{props.extend.link?.map((attributes: Link) => <link {...attributes} />)}
{
props.extend.meta?.map(({ content, httpEquiv, media, name, property }) => (
<meta
content={content}
http-equiv={httpEquiv}
media={media}
name={name}
property={property}
/>
))
}