@grafana/ui
Version:
Grafana Components Library
10 lines (9 loc) • 381 B
TypeScript
import * as React from 'react';
import { LineStyle } from '@grafana/schema';
export interface Props extends React.HTMLAttributes<HTMLDivElement> {
color?: string;
gradient?: string;
lineStyle?: LineStyle;
noMargin?: boolean;
}
export declare const SeriesIcon: React.MemoExoticComponent<React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLDivElement>>>;