Updated the register to allow the difference between a individual and corporate
This commit is contained in:
@@ -2,11 +2,11 @@ import clsx from "clsx";
|
||||
import {useState} from "react";
|
||||
|
||||
interface Props {
|
||||
type: "email" | "text" | "password" | "tel";
|
||||
type: "email" | "text" | "password" | "tel" | "number";
|
||||
required?: boolean;
|
||||
label?: string;
|
||||
placeholder?: string;
|
||||
defaultValue?: string;
|
||||
defaultValue?: string | number;
|
||||
className?: string;
|
||||
disabled?: boolean;
|
||||
name: string;
|
||||
|
||||
Reference in New Issue
Block a user