М
Size: a a a
М
🦜
▲R
🦜
▲R
▲R
М
М
▲R
М
▲R
🦜
М
YZ
▲R
G
G
Ф
interface NumberProps {
onChange?: (field: string, value: number) => void;
variant: "number";
}
interface StringProps {
onChange?: (field: string, value: string) => void;
variant: "string";
}
type Props = NumberProps | StringProps;