UNPKG

@simspace/nivo-arcs

Version:

[![version](https://img.shields.io/npm/v/@nivo/arcs.svg?style=flat-square)](https://www.npmjs.com/package/@nivo/arcs)

14 lines 503 B
/// <reference types="react" /> import { animated, AnimatedProps } from '@react-spring/web'; import { ExtractProps } from '@simspace/nivo-core'; declare type ArcLineProps = { animated: AnimatedProps<{ radius: number; startAngle: number; endAngle: number; opacity: number; }>; } & ExtractProps<typeof animated.path>; export declare const ArcLine: ({ animated: animatedProps, ...rest }: ArcLineProps) => JSX.Element; export {}; //# sourceMappingURL=ArcLine.d.ts.map