reaviz
Version:
Data Visualization using React
17 lines (16 loc) • 428 B
TypeScript
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>>;