@specialdoom/solid-rev-kit
Version:
RevKit UI implementation for SolidJS
13 lines (12 loc) • 376 B
TypeScript
import { Input } from './input';
import { TextArea } from './text-area';
export { Input, TextArea };
interface BaseInputProps {
placeholder?: string;
disabled?: boolean;
onChange?: (event: Event) => void;
onBlur?: (event: Event) => void;
onInput?: (event: Event) => void;
onFocus?: (event: Event) => void;
}
export type { BaseInputProps };