2022-05-03 15:08:28 +02:00
|
|
|
import { IconProp } from "@fortawesome/fontawesome-svg-core";
|
|
|
|
|
|
|
|
|
|
type RowType = "input" | "checkbox" | "select";
|
|
|
|
|
|
|
|
|
|
export interface Row {
|
|
|
|
|
type: RowType;
|
|
|
|
|
label: string;
|
2022-06-11 11:59:00 +02:00
|
|
|
options?: { value: string; label?: string }[];
|
2022-05-03 15:08:28 +02:00
|
|
|
password?: boolean;
|
|
|
|
|
icon?: IconProp;
|
|
|
|
|
}
|