mirror of
https://github.com/anotherhadi/iknowyou.git
synced 2026-04-11 16:37:25 +02:00
17 lines
345 B
TypeScript
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,
|
|
};
|