Files
iknowyou/front/src/lib/vars.ts
2026-04-06 15:12:34 +02:00

17 lines
345 B
TypeScript

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,
};