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

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

library.add(faExpandArrowsAlt, faFolder, faSearch);

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