@grafana/ui
Version:
Grafana Components Library
8 lines (7 loc) • 386 B
TypeScript
import { HTMLAttributes } from 'react';
export interface Props extends HTMLAttributes<HTMLDivElement> {
className?: string;
/** Determine flex-alignment of child buttons. Needed for overflow behaviour. */
alignment?: 'left' | 'right';
}
export declare const ToolbarButtonRow: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<HTMLDivElement>>;