/components/navbar/leading

import { button } from "@hedia/hexui/components/button";
import { navbar } from "@hedia/hexui/components/navbar";
import { a, h2 } from "@hedia/html/elements";
import { chevLeftOutlineIcon } from "@hedia/iconly/outline";

export default function () {
  return [
    navbar(a({ href: "#" }, chevLeftOutlineIcon()), h2("Title")),
    navbar(button({ kind: "primary", shape: "round" }, chevLeftOutlineIcon()), h2("Title")),
  ];
}