@spark-web/float-input
Version:
--- title: Float Input storybookPath: forms-float-input--default isExperimentalPackage: true ---
6 lines (5 loc) • 423 B
TypeScript
/// <reference types="react" />
import type { TextInputProps } from '@spark-web/text-input';
import type { UseFloatInputProps } from './use-float-input';
export declare type FloatInputProps = UseFloatInputProps & Omit<TextInputProps, 'onChange' | 'value' | 'type' | 'inputMode'>;
export declare const FloatInput: import("react").ForwardRefExoticComponent<FloatInputProps & import("react").RefAttributes<HTMLInputElement>>;