Commit 3aa4e302 authored by Enrique Alcántara's avatar Enrique Alcántara

Merge branch 'remove-treeactionlink-component' into 'master'

Remove tree action link component

See merge request gitlab-org/gitlab!56766
parents a357b6a9 f84e23b8
<script>
import { GlLink } from '@gitlab/ui';
export default {
components: {
GlLink,
},
props: {
path: {
type: String,
required: true,
},
text: {
type: String,
required: true,
},
cssClass: {
type: String,
required: false,
default: null,
},
},
};
</script>
<template>
<gl-link :href="path" :class="cssClass" class="btn gl-button">{{ text }}</gl-link>
</template>
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment