This commit is contained in:
Hadi
2026-04-06 15:12:34 +02:00
commit 4989225671
117 changed files with 11454 additions and 0 deletions

16
front/src/lib/vars.ts Normal file
View File

@@ -0,0 +1,16 @@
import { Mail, User, Phone, Globe, Server, KeyRound, Contact } from "@lucide/svelte";
export const INPUT_TYPES = [
"email", "username", "name", "phone", "ip",
"domain", "password",
];
export const INPUT_TYPE_ICON = {
email: Mail,
username: User,
name: Contact,
phone: Phone,
domain: Globe,
ip: Server,
password: KeyRound,
};