/components/buttonStack/horizontal

import { button, buttons } from "@hedia/hexui/components/button";

export default function () {
  return buttons(
    { arrangement: "horizontal" },
    button({ kind: "primary" }, "Primary Button"),
    button({ kind: "secondary" }, "Secondary Button"),
  );
}