aboutsummaryrefslogtreecommitdiff
path: root/src/components/reply_button/reply_button.js
blob: c7bd2a2b8b1da284b31e6157a2730c98d305bd1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { library } from '@fortawesome/fontawesome-svg-core'
import { faReply } from '@fortawesome/free-solid-svg-icons'

library.add(faReply)

const ReplyButton = {
  name: 'ReplyButton',
  props: ['status', 'replying'],
  computed: {
    loggedIn () {
      return !!this.$store.state.users.currentUser
    }
  }
}

export default ReplyButton