import type { JSX } from 'solid-js' import { cn } from '../../lib/cn' type InputProps = { value?: string placeholder?: string type?: 'text' | 'number' | 'email' min?: string | number max?: string | number step?: string | number maxlength?: number disabled?: boolean invalid?: boolean class?: string style?: JSX.CSSProperties list?: string id?: string onInput?: JSX.EventHandlerUnion onChange?: JSX.EventHandlerUnion } export function Input(props: InputProps) { return ( ) } export function Textarea(props: { value?: string placeholder?: string rows?: number maxlength?: number disabled?: boolean class?: string onInput?: JSX.EventHandlerUnion }) { return (