UNPKG

react-spinning-number

Version:

<img src="./example/example.gif" width="100%">

10 lines (8 loc) 363 B
import { SpinningNumberProps } from '../types/props'; interface DigitProps extends Omit<SpinningNumberProps, "stagger" | "children"> { char: string | null; delay?: number; loaded: boolean; } export declare function Digit({ char, delay, loaded, className, style, fontSize, duration, }: DigitProps): import("react/jsx-runtime").JSX.Element; export {};