From 73fe1db60516dfa1b74206a5fd42ab300fec2389 Mon Sep 17 00:00:00 2001 From: Brendon Date: Thu, 20 May 2021 12:06:42 -0400 Subject: [PATCH] support thin icons in the upcoming font awesome 6 release --- Fa.vue | 2 +- index.js | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Fa.vue b/Fa.vue index 2624dae..c29e4cd 100644 --- a/Fa.vue +++ b/Fa.vue @@ -17,7 +17,7 @@ export default { icon: { type: String, required: true, - // validator: (value) => ... // TODO: Check if contains fa(s|r|d|l) + // validator: (value) => ... // TODO: Check if contains fa(s|r|d|l|t) }, primaryColor: { type: String, diff --git a/index.js b/index.js index 01a19d9..5fbc45e 100644 --- a/index.js +++ b/index.js @@ -10,6 +10,7 @@ const iconTypes = [ {prefix: "fal", libary: "light", type: ""}, {prefix: "fab", libary: "brands", type: ""}, {prefix: "fad", libary: "duotone", type: ""}, + {prefix: "fat", libary: "thin", type: ""}, ]; const faModule = "@fortawesome";