@carbon/ibm-products
Version:
Carbon for IBM Products
18 lines • 729 B
TypeScript
/**
* Copyright IBM Corp. 2021, 2024
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
*/
import React, { ReactNode } from 'react';
export interface ToolbarGroupProps {
/** Provide the content of the `ToolbarGroup` */
children?: ReactNode;
/** Provide an optional class to be applied to the containing node */
className?: string;
}
/** Toolbar groups organize the commands within a toolbar into related groups. */
export declare const ToolbarGroup: React.ForwardRefExoticComponent<ToolbarGroupProps & {
children?: ReactNode | undefined;
} & React.RefAttributes<HTMLDivElement>>;
//# sourceMappingURL=ToolbarGroup.d.ts.map