export const APP_ICON_IDS = [ 'rocket', 'sparkles', 'bolt', 'flame', 'star', 'heart', 'diamond', 'trophy', 'target', 'bulb', 'brain', 'robot', 'wand', 'atom', 'flask', 'cpu', 'code', 'terminal', 'api', 'database', 'cube', 'hexagon', 'plug', 'tool', 'settings', 'bug', 'activity', 'chart', 'briefcase', 'folder', 'file', 'book', 'message', 'mail', 'bell', 'paperclip', 'key', 'shield', 'user', 'home', 'globe', 'world', 'planet', 'compass', 'map', 'calendar', 'cloud', 'sun', 'moon', 'snowflake', 'leaf', 'mountain', 'feather', 'ghost', 'music', 'piano', 'camera', 'photo', 'palette', 'gamepad', 'gift', 'cart', 'chef' ] as const export type AppIconId = (typeof APP_ICON_IDS)[number] const appIconIds = new Set(APP_ICON_IDS) export function isAppIconId(id: string): id is AppIconId { return appIconIds.has(id) }