summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/markdown/toolbar_button.vue
blob: c87a3c1e910aa50743ae52f4f4dde92e568c3938 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<script>
  export default {
    props: {
      buttonTitle: {
        type: String,
        required: true,
      },
      icon: {
        type: String,
        required: true,
      },
      tag: {
        type: String,
        required: true,
      },
      tagBlock: {
        type: String,
        required: false,
        default: '',
      },
      prepend: {
        type: Boolean,
        required: false,
        default: false,
      },
    },
  };
</script>

<template>
  <button
    type="button"
    class="toolbar-btn js-md hidden-xs"
    tabindex="-1"
    :data-md-tag="tag"
    :data-md-block="tagBlock"
    :data-md-prepend="prepend"
    data-container="body"
    data-toggle="tooltip"
    :title="buttonTitle"
    :aria-label="buttonTitle">
    <i
      aria-hidden="true"
      class="fa fa-fw"
      :class="'fa-' + icon">
    </i>
  </button>
</template>