From f9a6d7ec44b0e4cf4b3f7c8f572928b297a7cbd6 Mon Sep 17 00:00:00 2001 From: Louis Lam Date: Sat, 25 Feb 2023 16:19:48 +0800 Subject: [PATCH] Add a missing icon --- src/icon.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/icon.js b/src/icon.js index 6cc997bbd..a69b2a88b 100644 --- a/src/icon.js +++ b/src/icon.js @@ -3,6 +3,9 @@ import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome"; // Add Free Font Awesome Icons // 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 { faArrowAltCircleUp, faCog, @@ -45,6 +48,7 @@ import { faHeartbeat, faFilter, faInfoCircle, + faClone, } from "@fortawesome/free-solid-svg-icons"; library.add( @@ -90,6 +94,7 @@ library.add( faHeartbeat, faFilter, faInfoCircle, + faClone, ); export { FontAwesomeIcon };