import Group from "./Group" export default ( name: string, icon: string, ...groups: ReturnType>[] ) => Widget.Box({ class_name: "page", attribute: { name, icon }, child: Widget.Scrollable({ css: "min-height: 300px;", child: Widget.Box({ class_name: "page-content", vexpand: true, vertical: true, children: groups, }), }), })