UNPKG

reaviz

Version:

Data Visualization using React

21 lines (20 loc) 427 B
import { FC } from 'react'; export interface GuideBarProps extends SVGRect { /** * Whether the guide bar is active. */ active: boolean; /** * Fill for the guide bar element. * * @default '#eee' */ fill?: string; /** * Opacity for the guide bar element. * * @default 0.15 */ opacity?: number; } export declare const GuideBar: FC<Partial<GuideBarProps>>;