Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.8.1 #252

Merged
merged 17 commits into from
Mar 30, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
UPDATED IconFamilyType to reflect actual accepted values
REMOVED invalid feather icon type. It is not accepted in getIconType helper
  • Loading branch information
Ayush Gupta committed Jun 3, 2021
commit 929613f9842cb5793d507092b2b147bbec520f0a
27 changes: 13 additions & 14 deletions src/index.d.ts
Original file line number Diff line number Diff line change
@@ -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;