UNPKG

xlibs-components

Version:

Modern React component library with Aceternity, MagicUI, and ShadCN components for building beautiful web applications

11 lines 475 B
import { ComponentPropsWithoutRef } from "react"; interface NumberTickerProps extends ComponentPropsWithoutRef<"span"> { value: number; startValue?: number; direction?: "up" | "down"; delay?: number; decimalPlaces?: number; } export declare function NumberTicker({ value, startValue, direction, delay, className, decimalPlaces, ...props }: NumberTickerProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=number-ticker.d.ts.map