interface SimpleInputProps {
    label?: string;
    description?: string;
    value: undefined | string;
    onChange: (value: undefined | string) => void;
}

Hierarchy

  • Omit<InputProps, "onChange" | "variant">
    • SimpleInputProps

Properties

label?: string
description?: string
value: undefined | string
onChange: (value: undefined | string) => void