reaviz
Version:
Data Visualization using React
18 lines (16 loc) • 370 B
TypeScript
import { FC } from 'react';
export interface GuideBarProps extends SVGRect {
/**
* Whether the guide bar is active.
*/
active: boolean;
/**
* Fill for the guide bar element.
*/
fill?: string;
/**
* Opacity for the guide bar element.
*/
opacity?: number;
}
export declare const GuideBar: FC<Partial<GuideBarProps>>;