UNPKG

@fidely-ui/react

Version:

Fidely UI is a modern, beautifully crafted React design system powered by Ark UI and Panda CSS, delivering accessible and themeable components for building exceptional web apps

8 lines (7 loc) 365 B
import * as React from 'react'; import { type InputProps } from '../input/index'; export interface FloatInputProps extends Omit<InputProps, 'label' | 'placeholder'> { label: React.ReactNode; value?: string | undefined; } export declare const FloatInput: React.ForwardRefExoticComponent<Omit<FloatInputProps, "ref"> & React.RefAttributes<HTMLInputElement>>;