UNPKG

reaviz

Version:

Data Visualization using React

19 lines (18 loc) 390 B
import { FC } from 'react'; export interface RadialGuideBarProps { active: boolean; path: string; /** * Fill for the guide bar element. * * @default '#eee' */ fill?: string; /** * Opacity for the guide bar element. * * @default 0.2 */ opacity?: number; } export declare const RadialGuideBar: FC<Partial<RadialGuideBarProps>>;