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