UNPKG

reaviz

Version:

Data Visualization using React

17 lines (16 loc) 417 B
import { FC } from 'react'; export interface StackedRadialGaugeDescriptionLabelProps { /** * A label shown at the center */ label: string; /** * A class name to apply */ className?: string; /** * A y offset to apply to the label */ yOffset?: number; } export declare const StackedRadialGaugeDescriptionLabel: FC<Partial<StackedRadialGaugeDescriptionLabelProps>>;