This commit is contained in:
2020-10-05 22:13:18 +00:00
parent f2678cc9b4
commit 17652ec56d
16 changed files with 55 additions and 25 deletions

View File

@@ -14,15 +14,18 @@ Vue.component("font-awesome-icon", FontAwesomeIcon); // Register component globa
import {
faBars,
faBell,
faCalendarCheck,
faCaretDown,
faChevronDown,
faEllipsisV,
faEye,
faEyeSlash,
faHistory,
faInfoCircle,
faUser,
faKey,
faQuestionCircle,
faSearch,
faSignInAlt,
faSignOutAlt
} from "@fortawesome/free-solid-svg-icons";
@@ -32,14 +35,17 @@ Vue.component("font-awesome-icon", FontAwesomeIcon);
library.add(
faBars,
faBell,
faCalendarCheck,
faCaretDown,
faChevronDown,
faEllipsisV,
faEye,
faEyeSlash,
faHistory,
faInfoCircle,
faKey,
faQuestionCircle,
faSearch,
faSignInAlt,
faSignOutAlt,
faUser
@@ -52,6 +58,12 @@ const CUSTOM_ICONS = {
icon: ["fas", "bell"]
}
},
ayiCalendarCheck: {
component: FontAwesomeIcon,
props: {
icon: ["fas", "calendar-check"]
}
},
ayiEye: {
component: FontAwesomeIcon,
props: {
@@ -70,6 +82,18 @@ const CUSTOM_ICONS = {
icon: ["fas", "ellipsis-v"]
}
},
ayiHistory: {
component: FontAwesomeIcon,
props: {
icon: ["fas", "history"]
}
},
ayiInfoCircle: {
component: FontAwesomeIcon,
props: {
icon: ["fas", "info-circle"]
}
},
ayiKey: {
component: FontAwesomeIcon,
props: {
@@ -82,6 +106,12 @@ const CUSTOM_ICONS = {
icon: ["fas", "question-circle"]
}
},
ayiSearch: {
component: FontAwesomeIcon,
props: {
icon: ["fas", "search"]
}
},
ayiSignIn: {
component: FontAwesomeIcon,
props: {