@grafana/ui
Version:
Grafana Components Library
14 lines (13 loc) • 474 B
TypeScript
import * as React from 'react';
import { type LinkModel, type LinkTarget } from '@grafana/data';
type TitleItemProps = {
className?: string;
children: React.ReactNode;
onClick?: LinkModel['onClick'];
href?: string;
target?: LinkTarget;
title?: string;
};
type TitleItemElement = HTMLAnchorElement & HTMLButtonElement;
export declare const TitleItem: React.ForwardRefExoticComponent<TitleItemProps & React.RefAttributes<TitleItemElement>>;
export {};