mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-05-09 15:56:11 -04:00
16 lines
371 B
TypeScript
16 lines
371 B
TypeScript
/**
|
|
* Enum representing all available icon names in the app.
|
|
* This provides type safety and consistency across platforms.
|
|
* The actual icon names for each platform are defined in their respective IconSymbol implementations.
|
|
*/
|
|
export enum IconSymbolName {
|
|
// Navigation icons
|
|
Key,
|
|
Envelope,
|
|
Gear,
|
|
House,
|
|
Paperplane,
|
|
ChevronRight,
|
|
ChevronLeftRight,
|
|
}
|