mirror of
https://github.com/jambonz/jambonz-webapp.git
synced 2025-12-19 05:37:43 +00:00
108 lines
1.2 KiB
TypeScript
108 lines
1.2 KiB
TypeScript
import {
|
|
X,
|
|
Eye,
|
|
Info,
|
|
Menu,
|
|
List,
|
|
Edit,
|
|
User,
|
|
Plus,
|
|
Grid,
|
|
Phone,
|
|
Users,
|
|
Edit3,
|
|
Trash,
|
|
LogIn,
|
|
LogOut,
|
|
EyeOff,
|
|
Server,
|
|
Trash2,
|
|
GitHub,
|
|
Filter,
|
|
XCircle,
|
|
Settings,
|
|
FilePlus,
|
|
Activity,
|
|
UserCheck,
|
|
ChevronUp,
|
|
Clipboard,
|
|
RefreshCw,
|
|
ArrowRight,
|
|
PlusCircle,
|
|
HelpCircle,
|
|
ChevronDown,
|
|
AlertCircle,
|
|
CheckCircle,
|
|
ChevronLeft,
|
|
ChevronRight,
|
|
MessageCircle,
|
|
PhoneOutgoing,
|
|
PhoneIncoming,
|
|
MoreHorizontal,
|
|
Share2,
|
|
ArrowUp,
|
|
ArrowDown,
|
|
Play,
|
|
Pause,
|
|
ChevronsLeft,
|
|
ChevronsRight,
|
|
Download,
|
|
} from "react-feather";
|
|
|
|
import type { Icon } from "react-feather";
|
|
|
|
export interface IconMap {
|
|
[key: string]: Icon;
|
|
}
|
|
|
|
export const Icons: IconMap = {
|
|
X,
|
|
Eye,
|
|
Info,
|
|
Menu,
|
|
List,
|
|
Edit,
|
|
User,
|
|
Plus,
|
|
Grid,
|
|
Phone,
|
|
Users,
|
|
Edit3,
|
|
Trash,
|
|
LogIn,
|
|
LogOut,
|
|
EyeOff,
|
|
Server,
|
|
Trash2,
|
|
GitHub,
|
|
Filter,
|
|
XCircle,
|
|
Settings,
|
|
FilePlus,
|
|
Activity,
|
|
UserCheck,
|
|
ChevronUp,
|
|
Clipboard,
|
|
RefreshCw,
|
|
ArrowRight,
|
|
PlusCircle,
|
|
HelpCircle,
|
|
ChevronDown,
|
|
AlertCircle,
|
|
CheckCircle,
|
|
ChevronLeft,
|
|
ChevronRight,
|
|
MessageCircle,
|
|
PhoneOutgoing,
|
|
PhoneIncoming,
|
|
MoreHorizontal,
|
|
Share2,
|
|
ArrowUp,
|
|
ArrowDown,
|
|
Play,
|
|
Pause,
|
|
ChevronsLeft,
|
|
ChevronsRight,
|
|
Download,
|
|
};
|