@grafana/ui
Version:
Grafana Components Library
11 lines (10 loc) • 367 B
TypeScript
import { type ActionModel, type Field } from '@grafana/data';
import { type ButtonProps } from '../Button/Button';
type ActionButtonProps = Omit<ButtonProps, 'children'> & {
action: ActionModel<Field>;
};
/**
* @internal
*/
export declare function ActionButton({ action, ...buttonProps }: ActionButtonProps): import("react/jsx-runtime").JSX.Element;
export {};