UNPKG

reaviz

Version:

Data Visualization using React

18 lines (16 loc) 429 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>>;