Commit f84e23b8 authored by Jarek Ostrowski's avatar Jarek Ostrowski

Remove tree action link component

MR: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/56766
parent d69809a3
<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