@kubit-ui-web/react-components
Version:
Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience
8 lines (7 loc) • 499 B
TypeScript
import React from 'react';
import { IInputCurrency } from './types/inputCurrency';
declare const InputCurrencyBoundary: <V extends string | unknown>(props: IInputCurrency<V>, ref: React.ForwardedRef<HTMLInputElement | undefined>) => JSX.Element;
declare const InputCurrency: <V extends string | unknown>(props: React.PropsWithChildren<IInputCurrency<V>> & {
ref?: React.ForwardedRef<HTMLInputElement> | undefined | null;
}) => ReturnType<typeof InputCurrencyBoundary>;
export { InputCurrency };