@letanure/resend-cli
Version:
A command-line interface for Resend email API
14 lines • 484 B
TypeScript
interface TextInputProps {
label: string;
value: string;
onChange: (value: string) => void;
placeholder?: string;
helpText?: string;
isFocused?: boolean;
error?: string;
labelWidth?: number;
disabled?: boolean;
}
export declare const TextInput: ({ label, value, onChange, placeholder, helpText, isFocused, error, labelWidth, disabled, }: TextInputProps) => import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=TextInput.d.ts.map