23 lines
697 B
TypeScript
23 lines
697 B
TypeScript
import * as React from 'react';
|
|
import type { LineElementOwnerState } from "./LineElement.js";
|
|
export interface AnimatedLineProps extends React.ComponentPropsWithoutRef<'path'> {
|
|
ownerState: LineElementOwnerState;
|
|
d: string;
|
|
/**
|
|
* If `true`, animations are skipped.
|
|
* @default false
|
|
*/
|
|
skipAnimation?: boolean;
|
|
}
|
|
/**
|
|
* Demos:
|
|
*
|
|
* - [Lines](https://mui.com/x/react-charts/lines/)
|
|
* - [Line demonstration](https://mui.com/x/react-charts/line-demo/)
|
|
*
|
|
* API:
|
|
*
|
|
* - [AnimatedLine API](https://mui.com/x/api/charts/animated-line/)
|
|
*/
|
|
declare const AnimatedLine: React.ForwardRefExoticComponent<AnimatedLineProps & React.RefAttributes<SVGPathElement>>;
|
|
export { AnimatedLine }; |