adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
19 lines (18 loc) • 377 B
JavaScript
import clsx from "clsx";
import React from "react";
import { Box } from "./Box";
function HeaderBarControls({
children,
className,
...rest
}) {
return /* @__PURE__ */ React.createElement(Box, {
...rest,
horizontal: true,
align: true,
className: clsx("HeaderBar__controls", "control-buttons", className)
}, children);
}
export {
HeaderBarControls
};