feat(web/input): allow defining icon for number row field

This commit is contained in:
Luke
2022-09-08 12:00:41 +02:00
parent 473a0f480d
commit b638e435ea
4 changed files with 9 additions and 2 deletions

View File

@@ -27,6 +27,7 @@ export interface INumber {
label: string;
placeholder?: string;
default?: number;
icon?: IconProp;
min?: number;
max?: number;
}