UNPKG

adwaita-web

Version:

A GTK inspired toolkit designed to build awesome web apps

16 lines (15 loc) 284 B
import cx from "clsx"; import React from "react"; function Toolbar({ className, children, horizontal, vertical }) { return /* @__PURE__ */ React.createElement("div", { className: cx("Toolbar", className, { horizontal, vertical }) }, children); } export { Toolbar };