feat(web/input): number input type

This commit is contained in:
Luke
2022-06-19 14:57:03 +02:00
parent b1056c1246
commit 5183607279
4 changed files with 48 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
import { IconProp } from "@fortawesome/fontawesome-svg-core";
type RowType = "input" | "checkbox" | "select";
type RowType = "input" | "checkbox" | "select" | "number";
export interface Row {
type: RowType;