UNPKG

@platformos/pos-cli

Version:

Manage your platformOS application

20 lines (19 loc) 414 B
/** * Copyright (c) 2019 GraphQL Contributors. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import React from 'react'; /** * ToolbarGroup * * A group of associated controls. */ export function ToolbarGroup({ children }) { return React.createElement("div", { className: "toolbar-button-group" }, children); }