@visx/react-spring
Version:
visx primitives that rely on react-spring for animation
9 lines • 542 B
TypeScript
/// <reference types="react" />
import { AxisProps } from '@visx/axis/lib/axis/Axis';
import { AxisScale } from '@visx/axis/lib/types';
import { AnimationTrajectory } from '../types';
export declare type AnimatedAxisProps<Scale extends AxisScale> = Omit<AxisProps<Scale>, 'ticksComponent'> & {
animationTrajectory?: AnimationTrajectory;
};
export default function AnimatedAxis<Scale extends AxisScale>({ animationTrajectory, tickComponent, ...axisProps }: AnimatedAxisProps<Scale>): JSX.Element;
//# sourceMappingURL=AnimatedAxis.d.ts.map