UNPKG

@redocly/theme

Version:

Shared UI components lib

9 lines (8 loc) 215 B
import React from 'react'; export type InputProps = { id: string; label?: string; placeholder?: string; value?: string; }; export declare function Input(props: InputProps): React.JSX.Element | null;