UNPKG

fybdp-d3-kg

Version:

Knowledge Graph using React and D3.js

17 lines (16 loc) 444 B
import { FC } from 'react'; export interface LinearGaugeOuterBarProps extends SVGRect { /** * Height of the chart. Set by `LinearGauge` component. */ height: number; /** * Width of the chart. Set by `LinearGauge` component. */ width: number; /** * Fill for the bar element. */ fill: string; } export declare const LinearGaugeOuterBar: FC<Partial<LinearGaugeOuterBarProps>>;