summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/packages_and_registries/infrastructure_registry/components/infrastructure_icon_and_name.vue
blob: 3100a1a7296a1234441e3b345f13b0d1e95fd372 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<script>
import { GlIcon } from '@gitlab/ui';

export default {
  name: 'InfrastructureIconAndName',
  components: {
    GlIcon,
  },
};
</script>

<template>
  <div class="gl-display-flex gl-align-items-center">
    <gl-icon name="infrastructure-registry" class="gl-ml-3 gl-mr-2" />
    <span>{{ s__('InfrastructureRegistry|Terraform') }}</span>
  </div>
</template>