Interface BadgeInputProps

interface BadgeInputProps {
    defaultValue?: string[];
    onChange?: (value: string[]) => any;
    type?: "number" | "text" | "tel" | "email" | "url";
    value?: string[];
}

Hierarchy

  • Pick<
        InputHTMLAttributes<HTMLInputElement>,
        "className" | "style" | "name" | "required" | "placeholder",
    >
    • BadgeInputProps

Properties

defaultValue?: string[]
onChange?: (value: string[]) => any
type?: "number" | "text" | "tel" | "email" | "url"
value?: string[]
MMNEPVFCICPMFPCPTTAAATR