UNPKG

@brizy/ui

Version:
11 lines (10 loc) 287 B
import { FCC } from "../types"; export interface Props { size?: "short" | "medium" | "large" | "auto"; className?: string; value?: string; onChange: (v: string) => void; onBlur?: VoidFunction; placeholder?: string; } export declare const LegacyInput: FCC<Props>;