/components/prose/links

import { prose } from "@hedia/hexui/components/prose";
import { a, p } from "@hedia/html/elements";

export function link() {
  return prose(p(a({ href: "https://example.com" }, "This is a link to an external website.")));
}