UNPKG

@nivo/polar-axes

Version:
10 lines 527 B
import { AnyScale } from '@nivo/scales'; import { RadialAxisConfig } from './types'; export type RadialAxisProps = { center: [number, number]; angle: number; scale: AnyScale; ticksPosition: 'before' | 'after'; } & RadialAxisConfig; export declare const RadialAxis: ({ ticksPosition, center, angle: rawAngle, scale, ticks: ticksSpec, tickSize, tickPadding, tickRotation: extraRotation, tickComponent, style, }: RadialAxisProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=RadialAxis.d.ts.map