UNPKG

fybdp-d3-kg

Version:

Knowledge Graph using React and D3.js

17 lines (16 loc) 458 B
import { PureComponent } from 'react'; export interface PieArcLabelProps { data: any; centroid: any; format?: (v: any) => any; fontFill: string; fontSize: number; fontFamily: string; lineStroke: string; padding: string; position: [number, number]; } export declare class PieArcLabel extends PureComponent<PieArcLabelProps> { static defaultProps: Partial<PieArcLabelProps>; render(): JSX.Element; }