import { button } from "@hedia/hexui/components/button";
import { navbar } from "@hedia/hexui/components/navbar";
import { a, h2 } from "@hedia/html/elements";
import { chevRightOutlineIcon, starOutlineIcon } from "@hedia/iconly/outline";
export default function () {
return [
navbar(h2("Title"), a({ href: "#" }, chevRightOutlineIcon())),
navbar(h2("Title"), button({ kind: "primary", shape: "round" }, starOutlineIcon())),
];
}