@fewings/fancy-react
Version:
react components with fancy style
13 lines (10 loc) • 395 B
text/typescript
import * as react_jsx_runtime from 'react/jsx-runtime';
import { ComponentProps } from 'react';
type Props = {
value: number;
countDur?: number;
sizeDur?: number;
format?: (value: number) => string;
};
declare function AnimateNumber({ value, countDur, sizeDur, format, style, ...props }: Props & ComponentProps<"div">): react_jsx_runtime.JSX.Element;
export { AnimateNumber };