Add a missing icon

This commit is contained in:
Louis Lam 2023-02-25 16:19:48 +08:00
parent 4a5a424198
commit f9a6d7ec44

View file

@ -3,6 +3,9 @@ import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome";
// Add Free Font Awesome Icons // Add Free Font Awesome Icons
// https://fontawesome.com/v5.15/icons?d=gallery&p=2&s=solid&m=free // https://fontawesome.com/v5.15/icons?d=gallery&p=2&s=solid&m=free
// In order to add an icon, you have to:
// 1) add the icon name in the import statement below;
// 2) add the icon name to the library.add() statement below.
import { import {
faArrowAltCircleUp, faArrowAltCircleUp,
faCog, faCog,
@ -45,6 +48,7 @@ import {
faHeartbeat, faHeartbeat,
faFilter, faFilter,
faInfoCircle, faInfoCircle,
faClone,
} from "@fortawesome/free-solid-svg-icons"; } from "@fortawesome/free-solid-svg-icons";
library.add( library.add(
@ -90,6 +94,7 @@ library.add(
faHeartbeat, faHeartbeat,
faFilter, faFilter,
faInfoCircle, faInfoCircle,
faClone,
); );
export { FontAwesomeIcon }; export { FontAwesomeIcon };