@funkit/connect
Version:
Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.
9 lines (8 loc) • 427 B
TypeScript
import { type NumberFlowProps, type NumberFlowElement } from '@number-flow/react';
import React from 'react';
type AnimatedDollarValueProps = Omit<NumberFlowProps, 'format'> & {
ref?: React.Ref<NumberFlowElement>;
dynamicMinFractionDigits?: boolean;
};
export declare const AnimatedDollarValue: React.ForwardRefExoticComponent<Omit<AnimatedDollarValueProps, "ref"> & React.RefAttributes<NumberFlowElement>>;
export {};