aboutsummaryrefslogtreecommitdiff
path: root/viewer/src/plugins/fontawesome.ts
blob: 9bf4dba9bd9fc1bc1cee77927872d71f1cf2eb6c (plain)
1
2
3
4
5
6
7
8
9
import Vue from "vue";

import { library } from "@fortawesome/fontawesome-svg-core";
import { faExpandArrowsAlt } from "@fortawesome/free-solid-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome";

library.add(faExpandArrowsAlt);

Vue.component("fa-icon", FontAwesomeIcon);