recharts
Version:
React charts
11 lines (10 loc) • 485 B
TypeScript
import * as React from 'react';
import { RadialBarProps } from '../polar/RadialBar';
import { Props as SectorProps } from '../shape/Sector';
export declare function parseCornerRadius(cornerRadius: string | number | undefined): number | undefined;
export interface RadialBarSectorProps extends SectorProps {
index?: number;
option: RadialBarProps['activeShape'];
isActive?: boolean;
}
export declare function RadialBarSector(props: RadialBarSectorProps): React.JSX.Element;