aboutsummaryrefslogtreecommitdiff
path: root/src/components/lists_card/lists_card.js
blob: b503caec461620ceb6856dc9762fc97a0449cd65 (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 {
  faEllipsisH
} from '@fortawesome/free-solid-svg-icons'

library.add(
  faEllipsisH
)

const ListsCard = {
  props: [
    'list'
  ]
}

export default ListsCard