UNPKG

@grafana/ui

Version:
12 lines (11 loc) 379 B
import { type Field, type LinkModel } from '@grafana/data'; import { type ButtonProps } from '../Button/Button'; type DataLinkButtonProps = { link: LinkModel<Field>; buttonProps?: Omit<ButtonProps, 'children'>; }; /** * @internal */ export declare function DataLinkButton({ link, buttonProps }: DataLinkButtonProps): import("react/jsx-runtime").JSX.Element; export {};