File tree Expand file tree Collapse file tree 3 files changed +16
-19
lines changed
docs/src/pages/[platform]/theming/icons
packages/react/src/primitives/Icon/context Expand file tree Collapse file tree 3 files changed +16
-19
lines changed Original file line number Diff line number Diff line change @@ -67,9 +67,6 @@ const iconMap: Record<string, IconsContextInterface> = {
67
67
error : < FiAlertCircle /> ,
68
68
info : < FiInfo /> ,
69
69
} ,
70
- fileUploader : {
71
- upload : < FiUploadCloud /> ,
72
- } ,
73
70
passwordField : {
74
71
visibility : < FiEye /> ,
75
72
visibilityOff : < FiEyeOff /> ,
@@ -88,6 +85,9 @@ const iconMap: Record<string, IconsContextInterface> = {
88
85
add : < FiPlus /> ,
89
86
remove : < FiMinus /> ,
90
87
} ,
88
+ storageManager : {
89
+ upload : < FiUploadCloud /> ,
90
+ } ,
91
91
} ,
92
92
hi : {
93
93
alert : {
@@ -100,9 +100,6 @@ const iconMap: Record<string, IconsContextInterface> = {
100
100
checked : < HiCheck /> ,
101
101
indeterminate : < HiMinus /> ,
102
102
} ,
103
- fileUploader : {
104
- upload : < HiUpload /> ,
105
- } ,
106
103
passwordField : {
107
104
visibility : < HiEye /> ,
108
105
visibilityOff : < HiEyeOff /> ,
@@ -121,6 +118,9 @@ const iconMap: Record<string, IconsContextInterface> = {
121
118
add : < HiPlus /> ,
122
119
remove : < HiMinus /> ,
123
120
} ,
121
+ storageManager : {
122
+ upload : < HiUpload /> ,
123
+ } ,
124
124
} ,
125
125
fc : {
126
126
alert : {
@@ -130,9 +130,6 @@ const iconMap: Record<string, IconsContextInterface> = {
130
130
info : < FcInfo /> ,
131
131
close : < FcMinus /> ,
132
132
} ,
133
- fileUploader : {
134
- upload : < FcUpload /> ,
135
- } ,
136
133
passwordField : {
137
134
visibility : < FcKey /> ,
138
135
visibilityOff : < FcLock /> ,
@@ -151,6 +148,9 @@ const iconMap: Record<string, IconsContextInterface> = {
151
148
add : < FcPlus /> ,
152
149
remove : < FcMinus /> ,
153
150
} ,
151
+ storageManager : {
152
+ upload : < FcUpload /> ,
153
+ } ,
154
154
} ,
155
155
default : { } ,
156
156
} ;
Original file line number Diff line number Diff line change @@ -64,13 +64,6 @@ const icons = {
64
64
field: {
65
65
clear : () => < / > ,
66
66
},
67
- fileUploader: {
68
- upload : () => < / > ,
69
- remove : () => < / > ,
70
- error : () => < / > ,
71
- success : () => < / > ,
72
- file : () => < / > ,
73
- },
74
67
menu: {
75
68
menu : () => < / > ,
76
69
},
@@ -96,6 +89,13 @@ const icons = {
96
89
add : () => < / > ,
97
90
remove : () => < / > ,
98
91
}
92
+ storageManager: {
93
+ upload : () => < / > ,
94
+ remove : () => < / > ,
95
+ error : () => < / > ,
96
+ success : () => < / > ,
97
+ file : () => < / > ,
98
+ },
99
99
}
100
100
```
101
101
</ExampleCode >
Original file line number Diff line number Diff line change @@ -9,9 +9,6 @@ export type IconsContextInterface = {
9
9
alert ?: ComponentIcons < 'close' | 'info' | 'error' | 'success' | 'warning' > ;
10
10
checkbox ?: ComponentIcons < 'indeterminate' | 'checked' > ;
11
11
field ?: ComponentIcons < 'clear' > ;
12
- fileUploader ?: ComponentIcons <
13
- 'upload' | 'remove' | 'error' | 'success' | 'file'
14
- > ;
15
12
menu ?: ComponentIcons < 'menu' > ;
16
13
message ?: ComponentIcons < 'close' | 'info' | 'error' | 'success' | 'warning' > ;
17
14
pagination ?: ComponentIcons < 'previous' | 'next' > ;
You can’t perform that action at this time.
0 commit comments