From 929613f9842cb5793d507092b2b147bbec520f0a Mon Sep 17 00:00:00 2001 From: Ayush Gupta Date: Thu, 3 Jun 2021 17:37:14 +0530 Subject: [PATCH] UPDATED IconFamilyType to reflect actual accepted values REMOVED invalid feather icon type. It is not accepted in getIconType helper --- src/index.d.ts | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/src/index.d.ts b/src/index.d.ts index 747700e..af0feee 100644 --- a/src/index.d.ts +++ b/src/index.d.ts @@ -11,20 +11,19 @@ import { declare module 'galio-framework' { type IconFamilyType = | 'Galio' - | 'AntDesign' - | 'Entypo' - | 'EvilIcons' - | 'Feather' - | 'FontAwesome' - | 'FontAwesome5' - | 'Fontisto' - | 'Foundation' - | 'Ionicons' - | 'MaterialIcons' - | 'MaterialCommunityIcons' - | 'Octicons' - | 'Zocial' - | 'SimpleLineIcons'; + | 'zocial' + | 'octicon' + | 'material' + | 'material-community' + | 'ionicon' + | 'foundation' + | 'evilicons' + | 'entypo' + | 'font-awesome' + | 'font-awesome-5' + | 'simple-line-icon' + | 'feather' + | 'antdesign'; type BaseColorType = string;