UNPKG

rumble-charts

Version:

Truly declarative React charts components

9 lines (8 loc) 339 B
import type { ReactElement } from 'react'; import type { DotsProps } from './Dots'; export declare type LabelsProps = Omit<DotsProps, 'dotType'>; /** * Renders labels for dots. Internally it's just a wrapper for [`<Dots>`](#dots) component * with `dotType="circle"`. */ export declare function Labels(props: LabelsProps): ReactElement;