import { button, buttons } from "@hedia/hexui/components/button";
export default function () {
return buttons(
{ arrangement: "vertical" },
button({ kind: "primary" }, "Primary Button"),
button({ kind: "secondary" }, "Secondary Button"),
);
}