compass/compass/utils/classes/Field.ts
2024-03-22 19:25:43 +00:00

16 lines
296 B
TypeScript

import { Icons } from "../constants";
export class Field {
iconKey: keyof typeof Icons;
title: string;
constructor(iconKey: keyof typeof Icons, title: string) {
this.iconKey = iconKey;
this.title = title;
}
validateInput(value: any): boolean {
return value !== null;
}
}