fix: unexpectedly set prop variant of TextField to required
This commit is contained in:
parent
cbd46d4030
commit
16cfae8bad
@ -9,7 +9,7 @@ interface InputProps extends React.HTMLAttributes<HTMLDivElement> {
|
|||||||
onInputTextChange?: (value: string) => void;
|
onInputTextChange?: (value: string) => void;
|
||||||
maxChar?: number;
|
maxChar?: number;
|
||||||
supportingText?: string;
|
supportingText?: string;
|
||||||
variant: "filled" | "outlined" | "standard";
|
variant?: "filled" | "outlined" | "standard";
|
||||||
}
|
}
|
||||||
|
|
||||||
const OutlineTextField: React.FC<InputProps> = ({
|
const OutlineTextField: React.FC<InputProps> = ({
|
||||||
|
Loading…
Reference in New Issue
Block a user