@bifrostui/icons 1.4.0-beta.1 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/EyeClosedFilled.d.ts +2 -0
- package/dist/components/EyeClosedFilled.js +37 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.js +3 -0
- package/es/components/EyeClosedFilled.d.ts +2 -0
- package/es/components/EyeClosedFilled.js +8 -0
- package/es/components/index.d.ts +1 -0
- package/es/components/index.js +296 -294
- package/package.json +3 -3
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all)
|
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
+
};
|
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from))
|
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
20
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
21
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
22
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
23
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
24
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
25
|
+
mod
|
|
26
|
+
));
|
|
27
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
28
|
+
var EyeClosedFilled_exports = {};
|
|
29
|
+
__export(EyeClosedFilled_exports, {
|
|
30
|
+
default: () => EyeClosedFilled_default
|
|
31
|
+
});
|
|
32
|
+
module.exports = __toCommonJS(EyeClosedFilled_exports);
|
|
33
|
+
var import_createSvgIcon = __toESM(require("../utils/createSvgIcon"));
|
|
34
|
+
var EyeClosedFilled_default = (0, import_createSvgIcon.default)(
|
|
35
|
+
'<path d="m21.8 17.6 56.6 56.6-4.2 4.2-56.6-56.6 4.2-4.2zm-1.3 12.8 10.8 10.8c-.8 2.1-1.3 4.4-1.3 6.8 0 9.9 8.1 18 18 18 2.4 0 4.7-.5 6.8-1.3l9.3 9.3C59 76.7 53.6 78 48 78c-14.7 0-27.8-9.3-39.2-27.3-1-1.6-1-3.7 0-5.3 3.7-6 7.7-10.9 11.7-15zM48 18c14.7 0 27.8 9.3 39.2 27.3 1 1.6 1 3.7 0 5.3-3.8 5.9-7.7 10.9-11.8 14.9L64.7 54.8c.9-2.1 1.3-4.4 1.3-6.8 0-9.9-8.1-18-18-18-2.4 0-4.7.5-6.8 1.3L31.9 22c5.1-2.7 10.5-4 16.1-4zM38 47.9 48.1 58H48c-5.4 0-9.8-4.3-10-9.7v-.4zM48 38c5.5 0 10 4.5 10 10v.1L48 38z"/>',
|
|
36
|
+
"EyeClosedFilledIcon"
|
|
37
|
+
);
|
|
@@ -86,6 +86,7 @@ export { default as ErrorCircleOutlinedIcon } from './ErrorCircleOutlined';
|
|
|
86
86
|
export { default as ExperimentOutlinedIcon } from './ExperimentOutlined';
|
|
87
87
|
export { default as ExploreCircleFilledIcon } from './ExploreCircleFilled';
|
|
88
88
|
export { default as ExploreCircleOutlinedIcon } from './ExploreCircleOutlined';
|
|
89
|
+
export { default as EyeClosedFilledIcon } from './EyeClosedFilled';
|
|
89
90
|
export { default as EyeFilledIcon } from './EyeFilled';
|
|
90
91
|
export { default as EyeOutlinedIcon } from './EyeOutlined';
|
|
91
92
|
export { default as FemaleOutlinedIcon } from './FemaleOutlined';
|
package/dist/components/index.js
CHANGED
|
@@ -115,6 +115,7 @@ __export(components_exports, {
|
|
|
115
115
|
ExperimentOutlinedIcon: () => import_ExperimentOutlined.default,
|
|
116
116
|
ExploreCircleFilledIcon: () => import_ExploreCircleFilled.default,
|
|
117
117
|
ExploreCircleOutlinedIcon: () => import_ExploreCircleOutlined.default,
|
|
118
|
+
EyeClosedFilledIcon: () => import_EyeClosedFilled.default,
|
|
118
119
|
EyeFilledIcon: () => import_EyeFilled.default,
|
|
119
120
|
EyeOutlinedIcon: () => import_EyeOutlined.default,
|
|
120
121
|
FemaleOutlinedIcon: () => import_FemaleOutlined.default,
|
|
@@ -352,6 +353,7 @@ var import_ErrorCircleOutlined = __toESM(require("./ErrorCircleOutlined"));
|
|
|
352
353
|
var import_ExperimentOutlined = __toESM(require("./ExperimentOutlined"));
|
|
353
354
|
var import_ExploreCircleFilled = __toESM(require("./ExploreCircleFilled"));
|
|
354
355
|
var import_ExploreCircleOutlined = __toESM(require("./ExploreCircleOutlined"));
|
|
356
|
+
var import_EyeClosedFilled = __toESM(require("./EyeClosedFilled"));
|
|
355
357
|
var import_EyeFilled = __toESM(require("./EyeFilled"));
|
|
356
358
|
var import_EyeOutlined = __toESM(require("./EyeOutlined"));
|
|
357
359
|
var import_FemaleOutlined = __toESM(require("./FemaleOutlined"));
|
|
@@ -589,6 +591,7 @@ var import_ZoomInOutlined = __toESM(require("./ZoomInOutlined"));
|
|
|
589
591
|
ExperimentOutlinedIcon,
|
|
590
592
|
ExploreCircleFilledIcon,
|
|
591
593
|
ExploreCircleOutlinedIcon,
|
|
594
|
+
EyeClosedFilledIcon,
|
|
592
595
|
EyeFilledIcon,
|
|
593
596
|
EyeOutlinedIcon,
|
|
594
597
|
FemaleOutlinedIcon,
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import createSvgIcon from "../utils/createSvgIcon";
|
|
2
|
+
var EyeClosedFilled_default = createSvgIcon(
|
|
3
|
+
'<path d="m21.8 17.6 56.6 56.6-4.2 4.2-56.6-56.6 4.2-4.2zm-1.3 12.8 10.8 10.8c-.8 2.1-1.3 4.4-1.3 6.8 0 9.9 8.1 18 18 18 2.4 0 4.7-.5 6.8-1.3l9.3 9.3C59 76.7 53.6 78 48 78c-14.7 0-27.8-9.3-39.2-27.3-1-1.6-1-3.7 0-5.3 3.7-6 7.7-10.9 11.7-15zM48 18c14.7 0 27.8 9.3 39.2 27.3 1 1.6 1 3.7 0 5.3-3.8 5.9-7.7 10.9-11.8 14.9L64.7 54.8c.9-2.1 1.3-4.4 1.3-6.8 0-9.9-8.1-18-18-18-2.4 0-4.7.5-6.8 1.3L31.9 22c5.1-2.7 10.5-4 16.1-4zM38 47.9 48.1 58H48c-5.4 0-9.8-4.3-10-9.7v-.4zM48 38c5.5 0 10 4.5 10 10v.1L48 38z"/>',
|
|
4
|
+
"EyeClosedFilledIcon"
|
|
5
|
+
);
|
|
6
|
+
export {
|
|
7
|
+
EyeClosedFilled_default as default
|
|
8
|
+
};
|
package/es/components/index.d.ts
CHANGED
|
@@ -86,6 +86,7 @@ export { default as ErrorCircleOutlinedIcon } from './ErrorCircleOutlined';
|
|
|
86
86
|
export { default as ExperimentOutlinedIcon } from './ExperimentOutlined';
|
|
87
87
|
export { default as ExploreCircleFilledIcon } from './ExploreCircleFilled';
|
|
88
88
|
export { default as ExploreCircleOutlinedIcon } from './ExploreCircleOutlined';
|
|
89
|
+
export { default as EyeClosedFilledIcon } from './EyeClosedFilled';
|
|
89
90
|
export { default as EyeFilledIcon } from './EyeFilled';
|
|
90
91
|
export { default as EyeOutlinedIcon } from './EyeOutlined';
|
|
91
92
|
export { default as FemaleOutlinedIcon } from './FemaleOutlined';
|
package/es/components/index.js
CHANGED
|
@@ -86,153 +86,154 @@ import { default as default86 } from "./ErrorCircleOutlined";
|
|
|
86
86
|
import { default as default87 } from "./ExperimentOutlined";
|
|
87
87
|
import { default as default88 } from "./ExploreCircleFilled";
|
|
88
88
|
import { default as default89 } from "./ExploreCircleOutlined";
|
|
89
|
-
import { default as default90 } from "./
|
|
90
|
-
import { default as default91 } from "./
|
|
91
|
-
import { default as default92 } from "./
|
|
92
|
-
import { default as default93 } from "./
|
|
93
|
-
import { default as default94 } from "./
|
|
94
|
-
import { default as default95 } from "./
|
|
95
|
-
import { default as default96 } from "./
|
|
96
|
-
import { default as default97 } from "./
|
|
97
|
-
import { default as default98 } from "./
|
|
98
|
-
import { default as default99 } from "./
|
|
99
|
-
import { default as default100 } from "./
|
|
100
|
-
import { default as default101 } from "./
|
|
101
|
-
import { default as default102 } from "./
|
|
102
|
-
import { default as default103 } from "./
|
|
103
|
-
import { default as default104 } from "./
|
|
104
|
-
import { default as default105 } from "./
|
|
105
|
-
import { default as default106 } from "./
|
|
106
|
-
import { default as default107 } from "./
|
|
107
|
-
import { default as default108 } from "./
|
|
108
|
-
import { default as default109 } from "./
|
|
109
|
-
import { default as default110 } from "./
|
|
110
|
-
import { default as default111 } from "./
|
|
111
|
-
import { default as default112 } from "./
|
|
112
|
-
import { default as default113 } from "./
|
|
113
|
-
import { default as default114 } from "./
|
|
114
|
-
import { default as default115 } from "./
|
|
115
|
-
import { default as default116 } from "./
|
|
116
|
-
import { default as default117 } from "./
|
|
117
|
-
import { default as default118 } from "./
|
|
118
|
-
import { default as default119 } from "./
|
|
119
|
-
import { default as default120 } from "./
|
|
120
|
-
import { default as default121 } from "./
|
|
121
|
-
import { default as default122 } from "./
|
|
122
|
-
import { default as default123 } from "./
|
|
123
|
-
import { default as default124 } from "./
|
|
124
|
-
import { default as default125 } from "./
|
|
125
|
-
import { default as default126 } from "./
|
|
126
|
-
import { default as default127 } from "./
|
|
127
|
-
import { default as default128 } from "./
|
|
128
|
-
import { default as default129 } from "./
|
|
129
|
-
import { default as default130 } from "./
|
|
130
|
-
import { default as default131 } from "./
|
|
131
|
-
import { default as default132 } from "./
|
|
132
|
-
import { default as default133 } from "./
|
|
133
|
-
import { default as default134 } from "./
|
|
134
|
-
import { default as default135 } from "./
|
|
135
|
-
import { default as default136 } from "./
|
|
136
|
-
import { default as default137 } from "./
|
|
137
|
-
import { default as default138 } from "./
|
|
138
|
-
import { default as default139 } from "./
|
|
139
|
-
import { default as default140 } from "./
|
|
140
|
-
import { default as default141 } from "./
|
|
141
|
-
import { default as default142 } from "./
|
|
142
|
-
import { default as default143 } from "./
|
|
143
|
-
import { default as default144 } from "./
|
|
144
|
-
import { default as default145 } from "./
|
|
145
|
-
import { default as default146 } from "./
|
|
146
|
-
import { default as default147 } from "./
|
|
147
|
-
import { default as default148 } from "./
|
|
148
|
-
import { default as default149 } from "./
|
|
149
|
-
import { default as default150 } from "./
|
|
150
|
-
import { default as default151 } from "./
|
|
151
|
-
import { default as default152 } from "./
|
|
152
|
-
import { default as default153 } from "./
|
|
153
|
-
import { default as default154 } from "./
|
|
154
|
-
import { default as default155 } from "./
|
|
155
|
-
import { default as default156 } from "./
|
|
156
|
-
import { default as default157 } from "./
|
|
157
|
-
import { default as default158 } from "./
|
|
158
|
-
import { default as default159 } from "./
|
|
159
|
-
import { default as default160 } from "./
|
|
160
|
-
import { default as default161 } from "./
|
|
161
|
-
import { default as default162 } from "./
|
|
162
|
-
import { default as default163 } from "./
|
|
163
|
-
import { default as default164 } from "./
|
|
164
|
-
import { default as default165 } from "./
|
|
165
|
-
import { default as default166 } from "./
|
|
166
|
-
import { default as default167 } from "./
|
|
167
|
-
import { default as default168 } from "./
|
|
168
|
-
import { default as default169 } from "./
|
|
169
|
-
import { default as default170 } from "./
|
|
170
|
-
import { default as default171 } from "./
|
|
171
|
-
import { default as default172 } from "./
|
|
172
|
-
import { default as default173 } from "./
|
|
173
|
-
import { default as default174 } from "./
|
|
174
|
-
import { default as default175 } from "./
|
|
175
|
-
import { default as default176 } from "./
|
|
176
|
-
import { default as default177 } from "./
|
|
177
|
-
import { default as default178 } from "./
|
|
178
|
-
import { default as default179 } from "./
|
|
179
|
-
import { default as default180 } from "./
|
|
180
|
-
import { default as default181 } from "./
|
|
181
|
-
import { default as default182 } from "./
|
|
182
|
-
import { default as default183 } from "./
|
|
183
|
-
import { default as default184 } from "./
|
|
184
|
-
import { default as default185 } from "./
|
|
185
|
-
import { default as default186 } from "./
|
|
186
|
-
import { default as default187 } from "./
|
|
187
|
-
import { default as default188 } from "./
|
|
188
|
-
import { default as default189 } from "./
|
|
189
|
-
import { default as default190 } from "./
|
|
190
|
-
import { default as default191 } from "./
|
|
191
|
-
import { default as default192 } from "./
|
|
192
|
-
import { default as default193 } from "./
|
|
193
|
-
import { default as default194 } from "./
|
|
194
|
-
import { default as default195 } from "./
|
|
195
|
-
import { default as default196 } from "./
|
|
196
|
-
import { default as default197 } from "./
|
|
197
|
-
import { default as default198 } from "./
|
|
198
|
-
import { default as default199 } from "./
|
|
199
|
-
import { default as default200 } from "./
|
|
200
|
-
import { default as default201 } from "./
|
|
201
|
-
import { default as default202 } from "./
|
|
202
|
-
import { default as default203 } from "./
|
|
203
|
-
import { default as default204 } from "./
|
|
204
|
-
import { default as default205 } from "./
|
|
205
|
-
import { default as default206 } from "./
|
|
206
|
-
import { default as default207 } from "./
|
|
207
|
-
import { default as default208 } from "./
|
|
208
|
-
import { default as default209 } from "./
|
|
209
|
-
import { default as default210 } from "./
|
|
210
|
-
import { default as default211 } from "./
|
|
211
|
-
import { default as default212 } from "./
|
|
212
|
-
import { default as default213 } from "./
|
|
213
|
-
import { default as default214 } from "./
|
|
214
|
-
import { default as default215 } from "./
|
|
215
|
-
import { default as default216 } from "./
|
|
216
|
-
import { default as default217 } from "./
|
|
217
|
-
import { default as default218 } from "./
|
|
218
|
-
import { default as default219 } from "./
|
|
219
|
-
import { default as default220 } from "./
|
|
220
|
-
import { default as default221 } from "./
|
|
221
|
-
import { default as default222 } from "./
|
|
222
|
-
import { default as default223 } from "./
|
|
223
|
-
import { default as default224 } from "./
|
|
224
|
-
import { default as default225 } from "./
|
|
225
|
-
import { default as default226 } from "./
|
|
226
|
-
import { default as default227 } from "./
|
|
227
|
-
import { default as default228 } from "./
|
|
228
|
-
import { default as default229 } from "./
|
|
229
|
-
import { default as default230 } from "./
|
|
230
|
-
import { default as default231 } from "./
|
|
231
|
-
import { default as default232 } from "./
|
|
232
|
-
import { default as default233 } from "./
|
|
233
|
-
import { default as default234 } from "./
|
|
234
|
-
import { default as default235 } from "./
|
|
235
|
-
import { default as default236 } from "./
|
|
89
|
+
import { default as default90 } from "./EyeClosedFilled";
|
|
90
|
+
import { default as default91 } from "./EyeFilled";
|
|
91
|
+
import { default as default92 } from "./EyeOutlined";
|
|
92
|
+
import { default as default93 } from "./FemaleOutlined";
|
|
93
|
+
import { default as default94 } from "./FilterOutlined";
|
|
94
|
+
import { default as default95 } from "./FingerprintOutlined";
|
|
95
|
+
import { default as default96 } from "./FireFilled";
|
|
96
|
+
import { default as default97 } from "./FlashlightOnOutlined";
|
|
97
|
+
import { default as default98 } from "./FlashlightOutlined";
|
|
98
|
+
import { default as default99 } from "./FlipOutlined";
|
|
99
|
+
import { default as default100 } from "./FollowOutlined";
|
|
100
|
+
import { default as default101 } from "./FullScreenOutlined";
|
|
101
|
+
import { default as default102 } from "./GetTicketsFilled";
|
|
102
|
+
import { default as default103 } from "./GetTicketsOutlined";
|
|
103
|
+
import { default as default104 } from "./GiftCardOutlined";
|
|
104
|
+
import { default as default105 } from "./GiftOutlined";
|
|
105
|
+
import { default as default106 } from "./GlassesOutlined";
|
|
106
|
+
import { default as default107 } from "./GppGoodFilled";
|
|
107
|
+
import { default as default108 } from "./GppGoodOutlined";
|
|
108
|
+
import { default as default109 } from "./GridViewOutlined";
|
|
109
|
+
import { default as default110 } from "./GripperBarHorizontal";
|
|
110
|
+
import { default as default111 } from "./GripperBarVertical";
|
|
111
|
+
import { default as default112 } from "./HashOutlined";
|
|
112
|
+
import { default as default113 } from "./HeartAddOutlined";
|
|
113
|
+
import { default as default114 } from "./HeartAddOutlinedBold";
|
|
114
|
+
import { default as default115 } from "./HeartBroken";
|
|
115
|
+
import { default as default116 } from "./HeartFilled";
|
|
116
|
+
import { default as default117 } from "./HeartMarkedOutlined";
|
|
117
|
+
import { default as default118 } from "./HeartOutlined";
|
|
118
|
+
import { default as default119 } from "./HelpCircleFilled";
|
|
119
|
+
import { default as default120 } from "./HelpCircleOutlined";
|
|
120
|
+
import { default as default121 } from "./HistoryOutlined";
|
|
121
|
+
import { default as default122 } from "./Home";
|
|
122
|
+
import { default as default123 } from "./HomeFilled";
|
|
123
|
+
import { default as default124 } from "./HomeOutlined";
|
|
124
|
+
import { default as default125 } from "./HourglassOutlined";
|
|
125
|
+
import { default as default126 } from "./InboxFilled";
|
|
126
|
+
import { default as default127 } from "./InboxFilledBold";
|
|
127
|
+
import { default as default128 } from "./LightVipOutlined";
|
|
128
|
+
import { default as default129 } from "./LinkOutlined";
|
|
129
|
+
import { default as default130 } from "./ListOutlined";
|
|
130
|
+
import { default as default131 } from "./LoadingThreeQuartersOutlined";
|
|
131
|
+
import { default as default132 } from "./LocationFilled";
|
|
132
|
+
import { default as default133 } from "./LocationOutlined";
|
|
133
|
+
import { default as default134 } from "./LuckyMoneyOutlined";
|
|
134
|
+
import { default as default135 } from "./MaiSuiLeft";
|
|
135
|
+
import { default as default136 } from "./MaiSuiRight";
|
|
136
|
+
import { default as default137 } from "./MailOutlined";
|
|
137
|
+
import { default as default138 } from "./MaleOutlined";
|
|
138
|
+
import { default as default139 } from "./MapFilled";
|
|
139
|
+
import { default as default140 } from "./MapOutlined";
|
|
140
|
+
import { default as default141 } from "./MessageOutlined";
|
|
141
|
+
import { default as default142 } from "./MicOutlined";
|
|
142
|
+
import { default as default143 } from "./MiniContractOutlined";
|
|
143
|
+
import { default as default144 } from "./Minus";
|
|
144
|
+
import { default as default145 } from "./MobileFilled";
|
|
145
|
+
import { default as default146 } from "./MobileOutlined";
|
|
146
|
+
import { default as default147 } from "./MomentsOutlined";
|
|
147
|
+
import { default as default148 } from "./MoonOutlined";
|
|
148
|
+
import { default as default149 } from "./More";
|
|
149
|
+
import { default as default150 } from "./MoreOutlined";
|
|
150
|
+
import { default as default151 } from "./MoreVerticalOutlined";
|
|
151
|
+
import { default as default152 } from "./MovieAppointmentOutlined";
|
|
152
|
+
import { default as default153 } from "./MovieFilled";
|
|
153
|
+
import { default as default154 } from "./MovieOutlined";
|
|
154
|
+
import { default as default155 } from "./NearMe";
|
|
155
|
+
import { default as default156 } from "./NextFilled";
|
|
156
|
+
import { default as default157 } from "./NoteOutlined";
|
|
157
|
+
import { default as default158 } from "./NoticeOutlined";
|
|
158
|
+
import { default as default159 } from "./OrderOutlined";
|
|
159
|
+
import { default as default160 } from "./OrdersOutlined";
|
|
160
|
+
import { default as default161 } from "./PageEditOutlined";
|
|
161
|
+
import { default as default162 } from "./PaperOutlined";
|
|
162
|
+
import { default as default163 } from "./PasswordOutlined";
|
|
163
|
+
import { default as default164 } from "./PhoneFilled";
|
|
164
|
+
import { default as default165 } from "./PhoneOutlined";
|
|
165
|
+
import { default as default166 } from "./PictureOutlined";
|
|
166
|
+
import { default as default167 } from "./PlayCircleOutlined";
|
|
167
|
+
import { default as default168 } from "./PlayCircleOutlinedBold";
|
|
168
|
+
import { default as default169 } from "./PreferentialEventFilled";
|
|
169
|
+
import { default as default170 } from "./PublicWelfareOutlined";
|
|
170
|
+
import { default as default171 } from "./QAFilled";
|
|
171
|
+
import { default as default172 } from "./QRCodeOutlined";
|
|
172
|
+
import { default as default173 } from "./QuoteEnd";
|
|
173
|
+
import { default as default174 } from "./QuoteStart";
|
|
174
|
+
import { default as default175 } from "./RMBCircleOutlined";
|
|
175
|
+
import { default as default176 } from "./RMBRefundOutlined";
|
|
176
|
+
import { default as default177 } from "./RadioCheckedFilled";
|
|
177
|
+
import { default as default178 } from "./RankingOutlined";
|
|
178
|
+
import { default as default179 } from "./RefreshOutlined";
|
|
179
|
+
import { default as default180 } from "./ReportOutlined";
|
|
180
|
+
import { default as default181 } from "./SaveOutlined";
|
|
181
|
+
import { default as default182 } from "./ScanOutlined";
|
|
182
|
+
import { default as default183 } from "./SearchGapOutlined";
|
|
183
|
+
import { default as default184 } from "./SearchOutlined";
|
|
184
|
+
import { default as default185 } from "./SettingsOutlined";
|
|
185
|
+
import { default as default186 } from "./SevenDayCalendar";
|
|
186
|
+
import { default as default187 } from "./Share";
|
|
187
|
+
import { default as default188 } from "./ShoppingCartOutlined";
|
|
188
|
+
import { default as default189 } from "./ShowFilled";
|
|
189
|
+
import { default as default190 } from "./ShowOutlined";
|
|
190
|
+
import { default as default191 } from "./SmileFilled";
|
|
191
|
+
import { default as default192 } from "./SmileOutlined";
|
|
192
|
+
import { default as default193 } from "./Sort";
|
|
193
|
+
import { default as default194 } from "./StarCircleOutlined";
|
|
194
|
+
import { default as default195 } from "./StarFilled";
|
|
195
|
+
import { default as default196 } from "./StarFilledSharp";
|
|
196
|
+
import { default as default197 } from "./StarOutlined";
|
|
197
|
+
import { default as default198 } from "./StarRoundedFilled";
|
|
198
|
+
import { default as default199 } from "./StoreFilled";
|
|
199
|
+
import { default as default200 } from "./SuccessCircleFilled";
|
|
200
|
+
import { default as default201 } from "./SuccessCircleFilledBold";
|
|
201
|
+
import { default as default202 } from "./SuccessCircleOutlined";
|
|
202
|
+
import { default as default203 } from "./SuccessFilled";
|
|
203
|
+
import { default as default204 } from "./SuccessFilledBold";
|
|
204
|
+
import { default as default205 } from "./SunOutlined";
|
|
205
|
+
import { default as default206 } from "./TaoPiaoPiaoLogo";
|
|
206
|
+
import { default as default207 } from "./TaoTicketsLogo";
|
|
207
|
+
import { default as default208 } from "./ThumbUpFilled";
|
|
208
|
+
import { default as default209 } from "./ThumbUpOutlined";
|
|
209
|
+
import { default as default210 } from "./TicketFilled";
|
|
210
|
+
import { default as default211 } from "./TicketMachineOutlined";
|
|
211
|
+
import { default as default212 } from "./TicketOutlined";
|
|
212
|
+
import { default as default213 } from "./TipsOutlined";
|
|
213
|
+
import { default as default214 } from "./ToTopOutlined";
|
|
214
|
+
import { default as default215 } from "./TopicFilled";
|
|
215
|
+
import { default as default216 } from "./TopicOutlined";
|
|
216
|
+
import { default as default217 } from "./TrendingCircleFilled";
|
|
217
|
+
import { default as default218 } from "./TrendingCircleOutlined";
|
|
218
|
+
import { default as default219 } from "./TripleVerticalLine";
|
|
219
|
+
import { default as default220 } from "./Up";
|
|
220
|
+
import { default as default221 } from "./UserFollowedOutlined";
|
|
221
|
+
import { default as default222 } from "./VerifiedFilled";
|
|
222
|
+
import { default as default223 } from "./VideoOutlined";
|
|
223
|
+
import { default as default224 } from "./VipCardFilled";
|
|
224
|
+
import { default as default225 } from "./VipFilled";
|
|
225
|
+
import { default as default226 } from "./VipOutlined";
|
|
226
|
+
import { default as default227 } from "./VolumeDownFilled";
|
|
227
|
+
import { default as default228 } from "./VolumeMuteFilled";
|
|
228
|
+
import { default as default229 } from "./VolumeMuteOutlined";
|
|
229
|
+
import { default as default230 } from "./VolumeUpFilled";
|
|
230
|
+
import { default as default231 } from "./VolumeUpOutlined";
|
|
231
|
+
import { default as default232 } from "./WeChatOutlined";
|
|
232
|
+
import { default as default233 } from "./WeiBoOutlined";
|
|
233
|
+
import { default as default234 } from "./WifiOutlined";
|
|
234
|
+
import { default as default235 } from "./XiaMiCircleOutlined";
|
|
235
|
+
import { default as default236 } from "./YouKuVipCircleOutlined";
|
|
236
|
+
import { default as default237 } from "./ZoomInOutlined";
|
|
236
237
|
export {
|
|
237
238
|
default3 as AccessTimeCircleFilledBoldIcon,
|
|
238
239
|
default2 as AccessTimeCircleFilledIcon,
|
|
@@ -322,151 +323,152 @@ export {
|
|
|
322
323
|
default87 as ExperimentOutlinedIcon,
|
|
323
324
|
default88 as ExploreCircleFilledIcon,
|
|
324
325
|
default89 as ExploreCircleOutlinedIcon,
|
|
325
|
-
default90 as
|
|
326
|
-
default91 as
|
|
327
|
-
default92 as
|
|
328
|
-
default93 as
|
|
329
|
-
default94 as
|
|
330
|
-
default95 as
|
|
331
|
-
default96 as
|
|
332
|
-
default97 as
|
|
333
|
-
default98 as
|
|
334
|
-
default99 as
|
|
335
|
-
default100 as
|
|
336
|
-
default101 as
|
|
337
|
-
default102 as
|
|
338
|
-
default103 as
|
|
339
|
-
default104 as
|
|
340
|
-
default105 as
|
|
341
|
-
default106 as
|
|
342
|
-
default107 as
|
|
343
|
-
default108 as
|
|
344
|
-
default109 as
|
|
345
|
-
default110 as
|
|
346
|
-
default111 as
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
default115 as
|
|
351
|
-
default116 as
|
|
352
|
-
default117 as
|
|
353
|
-
default118 as
|
|
354
|
-
default119 as
|
|
355
|
-
default120 as
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
default124 as
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
default128 as
|
|
364
|
-
default129 as
|
|
365
|
-
default130 as
|
|
366
|
-
default131 as
|
|
367
|
-
default132 as
|
|
368
|
-
default133 as
|
|
369
|
-
default134 as
|
|
370
|
-
default135 as
|
|
371
|
-
default136 as
|
|
372
|
-
default137 as
|
|
373
|
-
default138 as
|
|
374
|
-
default139 as
|
|
375
|
-
default140 as
|
|
376
|
-
default141 as
|
|
377
|
-
default142 as
|
|
378
|
-
default143 as
|
|
379
|
-
default144 as
|
|
380
|
-
default145 as
|
|
381
|
-
default146 as
|
|
382
|
-
default147 as
|
|
383
|
-
default148 as
|
|
384
|
-
default149 as
|
|
385
|
-
default150 as
|
|
386
|
-
default151 as
|
|
387
|
-
default152 as
|
|
388
|
-
default153 as
|
|
389
|
-
default154 as
|
|
390
|
-
default155 as
|
|
391
|
-
default156 as
|
|
392
|
-
default157 as
|
|
393
|
-
default158 as
|
|
394
|
-
default159 as
|
|
395
|
-
default160 as
|
|
396
|
-
default161 as
|
|
397
|
-
default162 as
|
|
398
|
-
default163 as
|
|
399
|
-
default164 as
|
|
400
|
-
default165 as
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
default169 as
|
|
405
|
-
default170 as
|
|
406
|
-
default171 as
|
|
407
|
-
default172 as
|
|
408
|
-
default173 as
|
|
409
|
-
default174 as
|
|
410
|
-
default175 as
|
|
411
|
-
default176 as
|
|
412
|
-
default177 as
|
|
413
|
-
default178 as
|
|
414
|
-
default179 as
|
|
415
|
-
default180 as
|
|
416
|
-
default181 as
|
|
417
|
-
default182 as
|
|
418
|
-
default183 as
|
|
419
|
-
default184 as
|
|
420
|
-
default185 as
|
|
421
|
-
default186 as
|
|
422
|
-
default187 as
|
|
423
|
-
default188 as
|
|
424
|
-
default189 as
|
|
425
|
-
default190 as
|
|
426
|
-
default191 as
|
|
427
|
-
default192 as
|
|
428
|
-
default193 as
|
|
429
|
-
default194 as
|
|
430
|
-
default195 as
|
|
431
|
-
default196 as
|
|
432
|
-
default197 as
|
|
433
|
-
default198 as
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
default205 as
|
|
441
|
-
default206 as
|
|
442
|
-
default207 as
|
|
443
|
-
default208 as
|
|
444
|
-
default209 as
|
|
445
|
-
default210 as
|
|
446
|
-
default211 as
|
|
447
|
-
default212 as
|
|
448
|
-
default213 as
|
|
449
|
-
default214 as
|
|
450
|
-
default215 as
|
|
451
|
-
default216 as
|
|
452
|
-
default217 as
|
|
453
|
-
default218 as
|
|
454
|
-
default219 as
|
|
455
|
-
default220 as
|
|
456
|
-
default221 as
|
|
457
|
-
default222 as
|
|
458
|
-
default223 as
|
|
459
|
-
default224 as
|
|
460
|
-
default225 as
|
|
461
|
-
default226 as
|
|
462
|
-
default227 as
|
|
463
|
-
default228 as
|
|
464
|
-
default229 as
|
|
465
|
-
default230 as
|
|
466
|
-
default231 as
|
|
467
|
-
default232 as
|
|
468
|
-
default233 as
|
|
469
|
-
default234 as
|
|
470
|
-
default235 as
|
|
471
|
-
default236 as
|
|
326
|
+
default90 as EyeClosedFilledIcon,
|
|
327
|
+
default91 as EyeFilledIcon,
|
|
328
|
+
default92 as EyeOutlinedIcon,
|
|
329
|
+
default93 as FemaleOutlinedIcon,
|
|
330
|
+
default94 as FilterOutlinedIcon,
|
|
331
|
+
default95 as FingerprintOutlinedIcon,
|
|
332
|
+
default96 as FireFilledIcon,
|
|
333
|
+
default97 as FlashlightOnOutlinedIcon,
|
|
334
|
+
default98 as FlashlightOutlinedIcon,
|
|
335
|
+
default99 as FlipOutlinedIcon,
|
|
336
|
+
default100 as FollowOutlinedIcon,
|
|
337
|
+
default101 as FullScreenOutlinedIcon,
|
|
338
|
+
default102 as GetTicketsFilledIcon,
|
|
339
|
+
default103 as GetTicketsOutlinedIcon,
|
|
340
|
+
default104 as GiftCardOutlinedIcon,
|
|
341
|
+
default105 as GiftOutlinedIcon,
|
|
342
|
+
default106 as GlassesOutlinedIcon,
|
|
343
|
+
default107 as GppGoodFilledIcon,
|
|
344
|
+
default108 as GppGoodOutlinedIcon,
|
|
345
|
+
default109 as GridViewOutlinedIcon,
|
|
346
|
+
default110 as GripperBarHorizontalIcon,
|
|
347
|
+
default111 as GripperBarVerticalIcon,
|
|
348
|
+
default112 as HashOutlinedIcon,
|
|
349
|
+
default114 as HeartAddOutlinedBoldIcon,
|
|
350
|
+
default113 as HeartAddOutlinedIcon,
|
|
351
|
+
default115 as HeartBrokenIcon,
|
|
352
|
+
default116 as HeartFilledIcon,
|
|
353
|
+
default117 as HeartMarkedOutlinedIcon,
|
|
354
|
+
default118 as HeartOutlinedIcon,
|
|
355
|
+
default119 as HelpCircleFilledIcon,
|
|
356
|
+
default120 as HelpCircleOutlinedIcon,
|
|
357
|
+
default121 as HistoryOutlinedIcon,
|
|
358
|
+
default123 as HomeFilledIcon,
|
|
359
|
+
default122 as HomeIcon,
|
|
360
|
+
default124 as HomeOutlinedIcon,
|
|
361
|
+
default125 as HourglassOutlinedIcon,
|
|
362
|
+
default127 as InboxFilledBoldIcon,
|
|
363
|
+
default126 as InboxFilledIcon,
|
|
364
|
+
default128 as LightVipOutlinedIcon,
|
|
365
|
+
default129 as LinkOutlinedIcon,
|
|
366
|
+
default130 as ListOutlinedIcon,
|
|
367
|
+
default131 as LoadingThreeQuartersOutlinedIcon,
|
|
368
|
+
default132 as LocationFilledIcon,
|
|
369
|
+
default133 as LocationOutlinedIcon,
|
|
370
|
+
default134 as LuckyMoneyOutlinedIcon,
|
|
371
|
+
default135 as MaiSuiLeftIcon,
|
|
372
|
+
default136 as MaiSuiRightIcon,
|
|
373
|
+
default137 as MailOutlinedIcon,
|
|
374
|
+
default138 as MaleOutlinedIcon,
|
|
375
|
+
default139 as MapFilledIcon,
|
|
376
|
+
default140 as MapOutlinedIcon,
|
|
377
|
+
default141 as MessageOutlinedIcon,
|
|
378
|
+
default142 as MicOutlinedIcon,
|
|
379
|
+
default143 as MiniContractOutlinedIcon,
|
|
380
|
+
default144 as MinusIcon,
|
|
381
|
+
default145 as MobileFilledIcon,
|
|
382
|
+
default146 as MobileOutlinedIcon,
|
|
383
|
+
default147 as MomentsOutlinedIcon,
|
|
384
|
+
default148 as MoonOutlinedIcon,
|
|
385
|
+
default149 as MoreIcon,
|
|
386
|
+
default150 as MoreOutlinedIcon,
|
|
387
|
+
default151 as MoreVerticalOutlinedIcon,
|
|
388
|
+
default152 as MovieAppointmentOutlinedIcon,
|
|
389
|
+
default153 as MovieFilledIcon,
|
|
390
|
+
default154 as MovieOutlinedIcon,
|
|
391
|
+
default155 as NearMeIcon,
|
|
392
|
+
default156 as NextFilledIcon,
|
|
393
|
+
default157 as NoteOutlinedIcon,
|
|
394
|
+
default158 as NoticeOutlinedIcon,
|
|
395
|
+
default159 as OrderOutlinedIcon,
|
|
396
|
+
default160 as OrdersOutlinedIcon,
|
|
397
|
+
default161 as PageEditOutlinedIcon,
|
|
398
|
+
default162 as PaperOutlinedIcon,
|
|
399
|
+
default163 as PasswordOutlinedIcon,
|
|
400
|
+
default164 as PhoneFilledIcon,
|
|
401
|
+
default165 as PhoneOutlinedIcon,
|
|
402
|
+
default166 as PictureOutlinedIcon,
|
|
403
|
+
default168 as PlayCircleOutlinedBoldIcon,
|
|
404
|
+
default167 as PlayCircleOutlinedIcon,
|
|
405
|
+
default169 as PreferentialEventFilledIcon,
|
|
406
|
+
default170 as PublicWelfareOutlinedIcon,
|
|
407
|
+
default171 as QAFilledIcon,
|
|
408
|
+
default172 as QRCodeOutlinedIcon,
|
|
409
|
+
default173 as QuoteEndIcon,
|
|
410
|
+
default174 as QuoteStartIcon,
|
|
411
|
+
default175 as RMBCircleOutlinedIcon,
|
|
412
|
+
default176 as RMBRefundOutlinedIcon,
|
|
413
|
+
default177 as RadioCheckedFilledIcon,
|
|
414
|
+
default178 as RankingOutlinedIcon,
|
|
415
|
+
default179 as RefreshOutlinedIcon,
|
|
416
|
+
default180 as ReportOutlinedIcon,
|
|
417
|
+
default181 as SaveOutlinedIcon,
|
|
418
|
+
default182 as ScanOutlinedIcon,
|
|
419
|
+
default183 as SearchGapOutlinedIcon,
|
|
420
|
+
default184 as SearchOutlinedIcon,
|
|
421
|
+
default185 as SettingsOutlinedIcon,
|
|
422
|
+
default186 as SevenDayCalendarIcon,
|
|
423
|
+
default187 as ShareIcon,
|
|
424
|
+
default188 as ShoppingCartOutlinedIcon,
|
|
425
|
+
default189 as ShowFilledIcon,
|
|
426
|
+
default190 as ShowOutlinedIcon,
|
|
427
|
+
default191 as SmileFilledIcon,
|
|
428
|
+
default192 as SmileOutlinedIcon,
|
|
429
|
+
default193 as SortIcon,
|
|
430
|
+
default194 as StarCircleOutlinedIcon,
|
|
431
|
+
default195 as StarFilledIcon,
|
|
432
|
+
default196 as StarFilledSharpIcon,
|
|
433
|
+
default197 as StarOutlinedIcon,
|
|
434
|
+
default198 as StarRoundedFilledIcon,
|
|
435
|
+
default199 as StoreFilledIcon,
|
|
436
|
+
default201 as SuccessCircleFilledBoldIcon,
|
|
437
|
+
default200 as SuccessCircleFilledIcon,
|
|
438
|
+
default202 as SuccessCircleOutlinedIcon,
|
|
439
|
+
default204 as SuccessFilledBoldIcon,
|
|
440
|
+
default203 as SuccessFilledIcon,
|
|
441
|
+
default205 as SunOutlinedIcon,
|
|
442
|
+
default206 as TaoPiaoPiaoLogoIcon,
|
|
443
|
+
default207 as TaoTicketsLogoIcon,
|
|
444
|
+
default208 as ThumbUpFilledIcon,
|
|
445
|
+
default209 as ThumbUpOutlinedIcon,
|
|
446
|
+
default210 as TicketFilledIcon,
|
|
447
|
+
default211 as TicketMachineOutlinedIcon,
|
|
448
|
+
default212 as TicketOutlinedIcon,
|
|
449
|
+
default213 as TipsOutlinedIcon,
|
|
450
|
+
default214 as ToTopOutlinedIcon,
|
|
451
|
+
default215 as TopicFilledIcon,
|
|
452
|
+
default216 as TopicOutlinedIcon,
|
|
453
|
+
default217 as TrendingCircleFilledIcon,
|
|
454
|
+
default218 as TrendingCircleOutlinedIcon,
|
|
455
|
+
default219 as TripleVerticalLineIcon,
|
|
456
|
+
default220 as UpIcon,
|
|
457
|
+
default221 as UserFollowedOutlinedIcon,
|
|
458
|
+
default222 as VerifiedFilledIcon,
|
|
459
|
+
default223 as VideoOutlinedIcon,
|
|
460
|
+
default224 as VipCardFilledIcon,
|
|
461
|
+
default225 as VipFilledIcon,
|
|
462
|
+
default226 as VipOutlinedIcon,
|
|
463
|
+
default227 as VolumeDownFilledIcon,
|
|
464
|
+
default228 as VolumeMuteFilledIcon,
|
|
465
|
+
default229 as VolumeMuteOutlinedIcon,
|
|
466
|
+
default230 as VolumeUpFilledIcon,
|
|
467
|
+
default231 as VolumeUpOutlinedIcon,
|
|
468
|
+
default232 as WeChatOutlinedIcon,
|
|
469
|
+
default233 as WeiBoOutlinedIcon,
|
|
470
|
+
default234 as WifiOutlinedIcon,
|
|
471
|
+
default235 as XiaMiCircleOutlinedIcon,
|
|
472
|
+
default236 as YouKuVipCircleOutlinedIcon,
|
|
473
|
+
default237 as ZoomInOutlinedIcon
|
|
472
474
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bifrostui/icons",
|
|
3
|
-
"version": "1.4.0
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"description": "SVG icon components for BUI",
|
|
5
5
|
"homepage": "http://bui.taopiaopiao.com",
|
|
6
6
|
"license": "MIT",
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"clsx": "^1.2.1",
|
|
36
|
-
"@bifrostui/utils": "1.4.0
|
|
37
|
-
"@bifrostui/types": "1.4.0
|
|
36
|
+
"@bifrostui/utils": "1.4.0",
|
|
37
|
+
"@bifrostui/types": "1.4.0"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
40
|
"react": "^17.0.0 || ^18.0.0"
|