@alauda/doom
Version:
Doctor Doom making docs.
7 lines (6 loc) • 371 B
TypeScript
import { type ComponentType } from 'react';
import { type InputProps } from '../Input/index.js';
export interface FocusInputProps extends InputProps {
Component?: ComponentType<InputProps>;
}
export declare const FocusInput: ({ Component, className, style, placeholder, value, onFocus, onBlur, ...props }: FocusInputProps) => import("react/jsx-runtime").JSX.Element;