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;
|
||||
maxChar?: number;
|
||||
supportingText?: string;
|
||||
variant: "filled" | "outlined" | "standard";
|
||||
variant?: "filled" | "outlined" | "standard";
|
||||
}
|
||||
|
||||
const OutlineTextField: React.FC<InputProps> = ({
|
||||
|
Loading…
Reference in New Issue
Block a user