reaviz
Version:
Data Visualization using React
19 lines (18 loc) • 461 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.
*
* @default '#484848'
*/
fill: string;
}
export declare const LinearGaugeOuterBar: FC<Partial<LinearGaugeOuterBarProps>>;