1import { SnackLogo } from '@expo/styleguide'; 2import { 3 BuildIcon, 4 DeploymentIcon, 5 Grid01Icon, 6 Settings01Icon, 7 EasSubmitIcon, 8 ChannelIcon, 9 GitBranch01Icon, 10 UpdateIcon, 11 CredentialIcon, 12 Key01Icon, 13} from '@expo/styleguide-icons'; 14 15export const entries = [ 16 { 17 label: 'Account Settings', 18 url: 'https://expo.dev/accounts/[account]/settings', 19 Icon: Settings01Icon, 20 }, 21 { 22 label: 'User Settings', 23 url: 'https://expo.dev/settings', 24 Icon: Settings01Icon, 25 }, 26 { 27 label: 'Snacks', 28 url: 'https://expo.dev/accounts/[account]/snacks', 29 Icon: SnackLogo, 30 }, 31 { 32 label: 'Project Overview', 33 url: 'https://expo.dev/accounts/[account]/projects/[project]', 34 Icon: Grid01Icon, 35 }, 36 { 37 label: 'Project Deployments', 38 url: 'https://expo.dev/accounts/[account]/projects/[project]/deployments', 39 Icon: DeploymentIcon, 40 }, 41 { 42 label: 'Project Builds', 43 url: 'https://expo.dev/accounts/[account]/projects/[project]/builds', 44 Icon: BuildIcon, 45 }, 46 { 47 label: 'Project Submissions', 48 url: 'https://expo.dev/accounts/[account]/projects/[project]/submissions', 49 Icon: EasSubmitIcon, 50 }, 51 { 52 label: 'Project Channels', 53 url: 'https://expo.dev/accounts/[account]/projects/[project]/channels', 54 Icon: ChannelIcon, 55 }, 56 { 57 label: 'Project Branches', 58 url: 'https://expo.dev/accounts/[account]/projects/[project]/branches', 59 Icon: GitBranch01Icon, 60 }, 61 { 62 label: 'Project Updates', 63 url: 'https://expo.dev/accounts/[account]/projects/[project]/updates', 64 Icon: UpdateIcon, 65 }, 66 { 67 label: 'Project Credentials', 68 url: 'https://expo.dev/accounts/[account]/projects/[project]/credentials', 69 Icon: CredentialIcon, 70 }, 71 { 72 label: 'Project Secrets', 73 url: 'https://expo.dev/accounts/[account]/projects/[project]/secrets', 74 Icon: Key01Icon, 75 }, 76 { 77 label: 'Project Settings', 78 url: 'https://expo.dev/accounts/[account]/projects/[project]/settings', 79 Icon: Settings01Icon, 80 }, 81]; 82