summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/groups/components/empty_states/archived_projects_empty_state.vue
blob: 535758750f99ea961df0d4f1a42098b3d3b6bfe3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<script>
import { GlEmptyState } from '@gitlab/ui';

import { s__ } from '~/locale';

export default {
  components: { GlEmptyState },
  i18n: {
    title: s__('GroupsEmptyState|No archived projects.'),
  },
  inject: ['newProjectIllustration'],
};
</script>

<template>
  <gl-empty-state
    :title="$options.i18n.title"
    :svg-path="newProjectIllustration"
    :svg-height="100"
  />
</template>