@liner-fe/icon 0.1.2 → 0.1.4
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/CHANGELOG.md +13 -0
- package/assets/color-citation-recommender/index.tsx +46 -0
- package/assets/color-hypothesis-generator/index.tsx +58 -0
- package/assets/color-literature-review/index.tsx +62 -0
- package/assets/color-peer-review/index.tsx +58 -0
- package/assets/color-research-tracer/index.tsx +46 -0
- package/assets/color-survey-simulator/index.tsx +58 -0
- package/index.tsx +219 -201
- package/lib/index.d.ts +62 -2
- package/lib/index.js +276 -14
- package/package.json +1 -1
package/index.tsx
CHANGED
|
@@ -199,207 +199,219 @@ import { IconColorExcel } from './assets/color-excel';
|
|
|
199
199
|
import { IconColorHtml } from './assets/color-html';
|
|
200
200
|
import { IconColorPowerpoint } from './assets/color-powerpoint';
|
|
201
201
|
import { IconColorLink } from './assets/color-link';
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
export {
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
202
|
+
import { IconColorHypothesisGenerator } from './assets/color-hypothesis-generator';
|
|
203
|
+
import { IconColorCitationRecommender } from './assets/color-citation-recommender';
|
|
204
|
+
import { IconColorPeerReview } from './assets/color-peer-review';
|
|
205
|
+
import { IconColorSurveySimulator } from './assets/color-survey-simulator';
|
|
206
|
+
import { IconColorLiteratureReview } from './assets/color-literature-review';
|
|
207
|
+
import { IconColorResearchTracer } from './assets/color-research-tracer';
|
|
208
|
+
export { IconArrowUpward,
|
|
209
|
+
IconArrowDownward,
|
|
210
|
+
IconArrowBack,
|
|
211
|
+
IconArrowForward,
|
|
212
|
+
IconDropUp,
|
|
213
|
+
IconDropDown,
|
|
214
|
+
IconArrowBackward,
|
|
215
|
+
IconArrowDropRight,
|
|
216
|
+
IconArrowUp,
|
|
217
|
+
IconArrowDown,
|
|
218
|
+
IconArrowLeft,
|
|
219
|
+
IconArrowRight,
|
|
220
|
+
IconMove,
|
|
221
|
+
IconArrowTurn,
|
|
222
|
+
IconStart,
|
|
223
|
+
IconEnd,
|
|
224
|
+
IconExtend,
|
|
225
|
+
IconShorten,
|
|
226
|
+
IconMore,
|
|
227
|
+
IconCheckMark,
|
|
228
|
+
IconCheckMarkFill,
|
|
229
|
+
IconExclamationmark,
|
|
230
|
+
IconExclamationmarkFill,
|
|
231
|
+
IconPlus,
|
|
232
|
+
IconMinus,
|
|
233
|
+
IconClose,
|
|
234
|
+
IconCloseFill,
|
|
235
|
+
IconDoubleArrowForward,
|
|
236
|
+
IconDoubleArrowBackward,
|
|
237
|
+
IconArrowUpRight,
|
|
238
|
+
IconArrowDownLeft,
|
|
239
|
+
IconArrowUpLeft,
|
|
240
|
+
IconArrowUpDown,
|
|
241
|
+
IconRedo,
|
|
242
|
+
IconUndo,
|
|
243
|
+
IconExpand,
|
|
244
|
+
IconShowAll,
|
|
245
|
+
IconHideAll,
|
|
246
|
+
IconHelp,
|
|
247
|
+
IconZoomIn,
|
|
248
|
+
IconZoomOut,
|
|
249
|
+
IconRetry,
|
|
250
|
+
IconQuestionMessage,
|
|
251
|
+
IconBooks,
|
|
252
|
+
IconBalance,
|
|
253
|
+
IconChartBar,
|
|
254
|
+
IconChartLineUptrend,
|
|
255
|
+
IconFolder,
|
|
256
|
+
IconFolderOpen,
|
|
257
|
+
IconFolderAdd,
|
|
258
|
+
IconDocument,
|
|
259
|
+
IconHistory,
|
|
260
|
+
IconPerson,
|
|
261
|
+
IconPersonAdd,
|
|
262
|
+
IconSend,
|
|
263
|
+
IconPaperclip,
|
|
264
|
+
IconShare,
|
|
265
|
+
IconSignOut,
|
|
266
|
+
IconLock,
|
|
267
|
+
IconAi,
|
|
268
|
+
IconTrash,
|
|
269
|
+
IconStack,
|
|
270
|
+
IconNewThread,
|
|
271
|
+
IconSummarize,
|
|
272
|
+
IconSearch,
|
|
273
|
+
IconMemo,
|
|
274
|
+
IconGlobe,
|
|
275
|
+
IconGraduationcap,
|
|
276
|
+
IconPalette,
|
|
277
|
+
IconDownload,
|
|
278
|
+
IconCopy,
|
|
279
|
+
IconRegenerate,
|
|
280
|
+
IconCredit,
|
|
281
|
+
IconFeedback,
|
|
282
|
+
IconCreditcard,
|
|
283
|
+
IconSpeaker,
|
|
284
|
+
IconTune,
|
|
285
|
+
IconShield,
|
|
286
|
+
IconMenu,
|
|
287
|
+
IconLight,
|
|
288
|
+
IconDocumentAdd,
|
|
289
|
+
IconThumbUp,
|
|
290
|
+
IconThumbDown,
|
|
291
|
+
IconDocumentWarning,
|
|
292
|
+
IconPersonFill,
|
|
293
|
+
IconStep,
|
|
294
|
+
IconBook,
|
|
295
|
+
IconDescription,
|
|
296
|
+
IconBookmark,
|
|
297
|
+
IconPower,
|
|
298
|
+
IconPhoto,
|
|
299
|
+
IconCamera,
|
|
300
|
+
IconList,
|
|
301
|
+
IconDesktop,
|
|
302
|
+
IconDesktopOnCursor,
|
|
303
|
+
IconViewList,
|
|
304
|
+
IconBolt,
|
|
305
|
+
IconHome,
|
|
306
|
+
IconVisibility,
|
|
307
|
+
IconVisibilityOff,
|
|
308
|
+
IconMagicWand,
|
|
309
|
+
IconHighlighter,
|
|
310
|
+
IconPencil,
|
|
311
|
+
IconEssay,
|
|
312
|
+
IconMagicPencil,
|
|
313
|
+
IconHighlightEdit,
|
|
314
|
+
IconParaphrase,
|
|
315
|
+
IconBulbExclamtionmark,
|
|
316
|
+
IconBulb,
|
|
317
|
+
IconMakeEasy,
|
|
318
|
+
IconTranslate,
|
|
319
|
+
IconInfo,
|
|
320
|
+
IconApple,
|
|
321
|
+
IconAndroid,
|
|
322
|
+
IconTwitter,
|
|
323
|
+
IconFacebook,
|
|
324
|
+
IconGoogle,
|
|
325
|
+
IconCar,
|
|
326
|
+
IconAirplane,
|
|
327
|
+
IconRocket,
|
|
328
|
+
IconSource,
|
|
329
|
+
IconLiner,
|
|
330
|
+
IconSetting,
|
|
331
|
+
IconLightMode,
|
|
332
|
+
IconDarkMode,
|
|
333
|
+
IconFire,
|
|
334
|
+
IconQuestionBox,
|
|
335
|
+
IconTarget,
|
|
336
|
+
IconNewTab,
|
|
337
|
+
IconQuote,
|
|
338
|
+
IconDocumentCheck,
|
|
339
|
+
IconBlock,
|
|
340
|
+
IconBookmarkCancel,
|
|
341
|
+
IconEmail,
|
|
342
|
+
IconFilter,
|
|
343
|
+
IconTimer,
|
|
344
|
+
IconPlayButton,
|
|
345
|
+
IconTextSelect,
|
|
346
|
+
IconBell,
|
|
347
|
+
IconSecretMode,
|
|
348
|
+
IconAddClock,
|
|
349
|
+
IconClock,
|
|
350
|
+
IconSpinner,
|
|
351
|
+
IconVolumeUp,
|
|
352
|
+
IconVolume,
|
|
353
|
+
IconGoogleExport,
|
|
354
|
+
IconLink,
|
|
355
|
+
IconSheetExport,
|
|
356
|
+
IconShieldPerson,
|
|
357
|
+
IconShieldUsage,
|
|
358
|
+
IconFormalBag,
|
|
359
|
+
IconCasualShoe,
|
|
360
|
+
IconFolderOpenShare,
|
|
361
|
+
IconFolderShare,
|
|
362
|
+
IconVerificationBadge,
|
|
363
|
+
IconReport,
|
|
364
|
+
IconBrain,
|
|
365
|
+
IconMindmap,
|
|
366
|
+
IconFlowchart,
|
|
367
|
+
IconFocus,
|
|
368
|
+
IconParagraph,
|
|
369
|
+
IconAddToFolder,
|
|
370
|
+
IconRemoveFromFolder,
|
|
371
|
+
IconMoveToFolder,
|
|
372
|
+
IconNewThreadFolder,
|
|
373
|
+
IconChrome,
|
|
374
|
+
IconNewChromeExtension,
|
|
375
|
+
IconMobile,
|
|
376
|
+
IconMembers,
|
|
377
|
+
IconTeams,
|
|
378
|
+
IconStop,
|
|
379
|
+
IconMicroscope,
|
|
380
|
+
IconLiteratureReview,
|
|
381
|
+
IconExpandClose,
|
|
382
|
+
IconRestaurant,
|
|
383
|
+
IconColorLiner,
|
|
384
|
+
IconColorLinerVariation,
|
|
385
|
+
IconColorFacebook,
|
|
386
|
+
IconColorGoogle,
|
|
387
|
+
IconColorFire,
|
|
388
|
+
IconColorTxt,
|
|
389
|
+
IconColorPdf,
|
|
390
|
+
IconColorDocx,
|
|
391
|
+
IconMoreHorizontal,
|
|
392
|
+
IconMoreVertical,
|
|
393
|
+
IconCheckMarkInCircle,
|
|
394
|
+
IconStar,
|
|
395
|
+
IconCreditAdd,
|
|
396
|
+
IconMNewTab,
|
|
397
|
+
IconCollectionAdd,
|
|
398
|
+
IconCollections,
|
|
399
|
+
IconSurvey,
|
|
400
|
+
IconLocation,
|
|
401
|
+
IconHourglass,
|
|
402
|
+
IconBag,
|
|
403
|
+
IconColorExcel,
|
|
404
|
+
IconColorHtml,
|
|
405
|
+
IconColorPowerpoint,
|
|
406
|
+
IconColorLink,
|
|
407
|
+
IconColorHypothesisGenerator,
|
|
408
|
+
IconColorCitationRecommender,
|
|
409
|
+
IconColorPeerReview,
|
|
410
|
+
IconColorSurveySimulator,
|
|
411
|
+
IconColorLiteratureReview,
|
|
412
|
+
IconColorResearchTracer, }
|
|
401
413
|
|
|
402
|
-
export type IconName = "arrow-upward" | "arrow-downward" | "arrow-back" | "arrow-forward" | "drop-up" | "drop-down" | "arrow-backward" | "arrow-drop-right" | "arrow-up" | "arrow-down" | "arrow-left" | "arrow-right" | "move" | "arrow-turn" | "start" | "end" | "extend" | "shorten" | "more" | "check-mark" | "check-mark-fill" | "exclamationmark" | "exclamationmark-fill" | "plus" | "minus" | "close" | "close-fill" | "double-arrow-forward" | "double-arrow-backward" | "arrow-up-right" | "arrow-down-left" | "arrow-up-left" | "arrow-up-down" | "redo" | "undo" | "expand" | "show-all" | "hide-all" | "help" | "zoom-in" | "zoom-out" | "retry" | "question-message" | "books" | "balance" | "chart-bar" | "chart-line-uptrend" | "folder" | "folder-open" | "folder-add" | "document" | "history" | "person" | "person-add" | "send" | "paperclip" | "share" | "sign-out" | "lock" | "ai" | "trash" | "stack" | "new-thread" | "summarize" | "search" | "memo" | "globe" | "graduationcap" | "palette" | "download" | "copy" | "regenerate" | "credit" | "feedback" | "creditcard" | "speaker" | "tune" | "shield" | "menu" | "light" | "document-add" | "thumb-up" | "thumb-down" | "document-warning" | "person-fill" | "step" | "book" | "description" | "bookmark" | "power" | "photo" | "camera" | "list" | "desktop" | "desktop-on-cursor" | "view-list" | "bolt" | "home" | "visibility" | "visibility-off" | "magic-wand" | "highlighter" | "pencil" | "essay" | "magic-pencil" | "highlight-edit" | "paraphrase" | "bulb-exclamtionmark" | "bulb" | "make-easy" | "translate" | "info" | "apple" | "android" | "twitter" | "facebook" | "google" | "car" | "airplane" | "rocket" | "source" | "liner" | "setting" | "light-mode" | "dark-mode" | "fire" | "question-box" | "target" | "new-tab" | "quote" | "document-check" | "block" | "bookmark-cancel" | "email" | "filter" | "timer" | "play-button" | "text-select" | "bell" | "secret-mode" | "add-clock" | "clock" | "spinner" | "volume-up" | "volume" | "google-export" | "link" | "sheet-export" | "shield-person" | "shield-usage" | "formal-bag" | "casual-shoe" | "folder-open-share" | "folder-share" | "verification-badge" | "report" | "brain" | "mindmap" | "flowchart" | "focus" | "paragraph" | "add-to-folder" | "remove-from-folder" | "move-to-folder" | "new-thread-folder" | "chrome" | "new-chrome-extension" | "mobile" | "members" | "teams" | "stop" | "microscope" | "literature-review" | "expand-close" | "restaurant" | "color-liner" | "color-liner-variation" | "color-facebook" | "color-google" | "color-fire" | "color-txt" | "color-pdf" | "color-docx" | "more-horizontal" | "more-vertical" | "check-mark-in-circle" | "star" | "credit-add" | "m-new-tab" | "collection-add" | "collections" | "survey" | "location" | "hourglass" | "bag" | "color-excel" | "color-html" | "color-powerpoint" | "color-link";
|
|
414
|
+
export type IconName = "arrow-upward" | "arrow-downward" | "arrow-back" | "arrow-forward" | "drop-up" | "drop-down" | "arrow-backward" | "arrow-drop-right" | "arrow-up" | "arrow-down" | "arrow-left" | "arrow-right" | "move" | "arrow-turn" | "start" | "end" | "extend" | "shorten" | "more" | "check-mark" | "check-mark-fill" | "exclamationmark" | "exclamationmark-fill" | "plus" | "minus" | "close" | "close-fill" | "double-arrow-forward" | "double-arrow-backward" | "arrow-up-right" | "arrow-down-left" | "arrow-up-left" | "arrow-up-down" | "redo" | "undo" | "expand" | "show-all" | "hide-all" | "help" | "zoom-in" | "zoom-out" | "retry" | "question-message" | "books" | "balance" | "chart-bar" | "chart-line-uptrend" | "folder" | "folder-open" | "folder-add" | "document" | "history" | "person" | "person-add" | "send" | "paperclip" | "share" | "sign-out" | "lock" | "ai" | "trash" | "stack" | "new-thread" | "summarize" | "search" | "memo" | "globe" | "graduationcap" | "palette" | "download" | "copy" | "regenerate" | "credit" | "feedback" | "creditcard" | "speaker" | "tune" | "shield" | "menu" | "light" | "document-add" | "thumb-up" | "thumb-down" | "document-warning" | "person-fill" | "step" | "book" | "description" | "bookmark" | "power" | "photo" | "camera" | "list" | "desktop" | "desktop-on-cursor" | "view-list" | "bolt" | "home" | "visibility" | "visibility-off" | "magic-wand" | "highlighter" | "pencil" | "essay" | "magic-pencil" | "highlight-edit" | "paraphrase" | "bulb-exclamtionmark" | "bulb" | "make-easy" | "translate" | "info" | "apple" | "android" | "twitter" | "facebook" | "google" | "car" | "airplane" | "rocket" | "source" | "liner" | "setting" | "light-mode" | "dark-mode" | "fire" | "question-box" | "target" | "new-tab" | "quote" | "document-check" | "block" | "bookmark-cancel" | "email" | "filter" | "timer" | "play-button" | "text-select" | "bell" | "secret-mode" | "add-clock" | "clock" | "spinner" | "volume-up" | "volume" | "google-export" | "link" | "sheet-export" | "shield-person" | "shield-usage" | "formal-bag" | "casual-shoe" | "folder-open-share" | "folder-share" | "verification-badge" | "report" | "brain" | "mindmap" | "flowchart" | "focus" | "paragraph" | "add-to-folder" | "remove-from-folder" | "move-to-folder" | "new-thread-folder" | "chrome" | "new-chrome-extension" | "mobile" | "members" | "teams" | "stop" | "microscope" | "literature-review" | "expand-close" | "restaurant" | "color-liner" | "color-liner-variation" | "color-facebook" | "color-google" | "color-fire" | "color-txt" | "color-pdf" | "color-docx" | "more-horizontal" | "more-vertical" | "check-mark-in-circle" | "star" | "credit-add" | "m-new-tab" | "collection-add" | "collections" | "survey" | "location" | "hourglass" | "bag" | "color-excel" | "color-html" | "color-powerpoint" | "color-link" | "color-hypothesis-generator" | "color-citation-recommender" | "color-peer-review" | "color-survey-simulator" | "color-literature-review" | "color-research-tracer";
|
|
403
415
|
|
|
404
416
|
export type IconSizeKey = keyof typeof iconSizeMap;
|
|
405
417
|
|
|
@@ -602,7 +614,13 @@ export const IconMap: Record<IconName, React.ForwardRefExoticComponent<any>> = {
|
|
|
602
614
|
"color-excel": IconColorExcel,
|
|
603
615
|
"color-html": IconColorHtml,
|
|
604
616
|
"color-powerpoint": IconColorPowerpoint,
|
|
605
|
-
"color-link": IconColorLink
|
|
617
|
+
"color-link": IconColorLink,
|
|
618
|
+
"color-hypothesis-generator": IconColorHypothesisGenerator,
|
|
619
|
+
"color-citation-recommender": IconColorCitationRecommender,
|
|
620
|
+
"color-peer-review": IconColorPeerReview,
|
|
621
|
+
"color-survey-simulator": IconColorSurveySimulator,
|
|
622
|
+
"color-literature-review": IconColorLiteratureReview,
|
|
623
|
+
"color-research-tracer": IconColorResearchTracer
|
|
606
624
|
} as const;
|
|
607
625
|
|
|
608
626
|
export interface IconProps extends Omit<SVGProps<SVGSVGElement>, 'fill'> {
|
package/lib/index.d.ts
CHANGED
|
@@ -1991,7 +1991,67 @@ interface ColorLinkProps extends Omit<SVGProps<SVGSVGElement>, 'fill' | 'name'>
|
|
|
1991
1991
|
}
|
|
1992
1992
|
declare const IconColorLink: React.ForwardRefExoticComponent<Omit<ColorLinkProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
1993
1993
|
|
|
1994
|
-
|
|
1994
|
+
interface ColorHypothesisGeneratorProps extends Omit<SVGProps<SVGSVGElement>, 'fill' | 'name'> {
|
|
1995
|
+
fill?: boolean;
|
|
1996
|
+
thick?: boolean;
|
|
1997
|
+
className?: string;
|
|
1998
|
+
size?: keyof typeof iconSizeMap;
|
|
1999
|
+
type?: BasicColorType;
|
|
2000
|
+
fillType?: BasicColorType;
|
|
2001
|
+
}
|
|
2002
|
+
declare const IconColorHypothesisGenerator: React.ForwardRefExoticComponent<Omit<ColorHypothesisGeneratorProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2003
|
+
|
|
2004
|
+
interface ColorCitationRecommenderProps extends Omit<SVGProps<SVGSVGElement>, 'fill' | 'name'> {
|
|
2005
|
+
fill?: boolean;
|
|
2006
|
+
thick?: boolean;
|
|
2007
|
+
className?: string;
|
|
2008
|
+
size?: keyof typeof iconSizeMap;
|
|
2009
|
+
type?: BasicColorType;
|
|
2010
|
+
fillType?: BasicColorType;
|
|
2011
|
+
}
|
|
2012
|
+
declare const IconColorCitationRecommender: React.ForwardRefExoticComponent<Omit<ColorCitationRecommenderProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2013
|
+
|
|
2014
|
+
interface ColorPeerReviewProps extends Omit<SVGProps<SVGSVGElement>, 'fill' | 'name'> {
|
|
2015
|
+
fill?: boolean;
|
|
2016
|
+
thick?: boolean;
|
|
2017
|
+
className?: string;
|
|
2018
|
+
size?: keyof typeof iconSizeMap;
|
|
2019
|
+
type?: BasicColorType;
|
|
2020
|
+
fillType?: BasicColorType;
|
|
2021
|
+
}
|
|
2022
|
+
declare const IconColorPeerReview: React.ForwardRefExoticComponent<Omit<ColorPeerReviewProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2023
|
+
|
|
2024
|
+
interface ColorSurveySimulatorProps extends Omit<SVGProps<SVGSVGElement>, 'fill' | 'name'> {
|
|
2025
|
+
fill?: boolean;
|
|
2026
|
+
thick?: boolean;
|
|
2027
|
+
className?: string;
|
|
2028
|
+
size?: keyof typeof iconSizeMap;
|
|
2029
|
+
type?: BasicColorType;
|
|
2030
|
+
fillType?: BasicColorType;
|
|
2031
|
+
}
|
|
2032
|
+
declare const IconColorSurveySimulator: React.ForwardRefExoticComponent<Omit<ColorSurveySimulatorProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2033
|
+
|
|
2034
|
+
interface ColorLiteratureReviewProps extends Omit<SVGProps<SVGSVGElement>, 'fill' | 'name'> {
|
|
2035
|
+
fill?: boolean;
|
|
2036
|
+
thick?: boolean;
|
|
2037
|
+
className?: string;
|
|
2038
|
+
size?: keyof typeof iconSizeMap;
|
|
2039
|
+
type?: BasicColorType;
|
|
2040
|
+
fillType?: BasicColorType;
|
|
2041
|
+
}
|
|
2042
|
+
declare const IconColorLiteratureReview: React.ForwardRefExoticComponent<Omit<ColorLiteratureReviewProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2043
|
+
|
|
2044
|
+
interface ColorResearchTracerProps extends Omit<SVGProps<SVGSVGElement>, 'fill' | 'name'> {
|
|
2045
|
+
fill?: boolean;
|
|
2046
|
+
thick?: boolean;
|
|
2047
|
+
className?: string;
|
|
2048
|
+
size?: keyof typeof iconSizeMap;
|
|
2049
|
+
type?: BasicColorType;
|
|
2050
|
+
fillType?: BasicColorType;
|
|
2051
|
+
}
|
|
2052
|
+
declare const IconColorResearchTracer: React.ForwardRefExoticComponent<Omit<ColorResearchTracerProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2053
|
+
|
|
2054
|
+
type IconName = "arrow-upward" | "arrow-downward" | "arrow-back" | "arrow-forward" | "drop-up" | "drop-down" | "arrow-backward" | "arrow-drop-right" | "arrow-up" | "arrow-down" | "arrow-left" | "arrow-right" | "move" | "arrow-turn" | "start" | "end" | "extend" | "shorten" | "more" | "check-mark" | "check-mark-fill" | "exclamationmark" | "exclamationmark-fill" | "plus" | "minus" | "close" | "close-fill" | "double-arrow-forward" | "double-arrow-backward" | "arrow-up-right" | "arrow-down-left" | "arrow-up-left" | "arrow-up-down" | "redo" | "undo" | "expand" | "show-all" | "hide-all" | "help" | "zoom-in" | "zoom-out" | "retry" | "question-message" | "books" | "balance" | "chart-bar" | "chart-line-uptrend" | "folder" | "folder-open" | "folder-add" | "document" | "history" | "person" | "person-add" | "send" | "paperclip" | "share" | "sign-out" | "lock" | "ai" | "trash" | "stack" | "new-thread" | "summarize" | "search" | "memo" | "globe" | "graduationcap" | "palette" | "download" | "copy" | "regenerate" | "credit" | "feedback" | "creditcard" | "speaker" | "tune" | "shield" | "menu" | "light" | "document-add" | "thumb-up" | "thumb-down" | "document-warning" | "person-fill" | "step" | "book" | "description" | "bookmark" | "power" | "photo" | "camera" | "list" | "desktop" | "desktop-on-cursor" | "view-list" | "bolt" | "home" | "visibility" | "visibility-off" | "magic-wand" | "highlighter" | "pencil" | "essay" | "magic-pencil" | "highlight-edit" | "paraphrase" | "bulb-exclamtionmark" | "bulb" | "make-easy" | "translate" | "info" | "apple" | "android" | "twitter" | "facebook" | "google" | "car" | "airplane" | "rocket" | "source" | "liner" | "setting" | "light-mode" | "dark-mode" | "fire" | "question-box" | "target" | "new-tab" | "quote" | "document-check" | "block" | "bookmark-cancel" | "email" | "filter" | "timer" | "play-button" | "text-select" | "bell" | "secret-mode" | "add-clock" | "clock" | "spinner" | "volume-up" | "volume" | "google-export" | "link" | "sheet-export" | "shield-person" | "shield-usage" | "formal-bag" | "casual-shoe" | "folder-open-share" | "folder-share" | "verification-badge" | "report" | "brain" | "mindmap" | "flowchart" | "focus" | "paragraph" | "add-to-folder" | "remove-from-folder" | "move-to-folder" | "new-thread-folder" | "chrome" | "new-chrome-extension" | "mobile" | "members" | "teams" | "stop" | "microscope" | "literature-review" | "expand-close" | "restaurant" | "color-liner" | "color-liner-variation" | "color-facebook" | "color-google" | "color-fire" | "color-txt" | "color-pdf" | "color-docx" | "more-horizontal" | "more-vertical" | "check-mark-in-circle" | "star" | "credit-add" | "m-new-tab" | "collection-add" | "collections" | "survey" | "location" | "hourglass" | "bag" | "color-excel" | "color-html" | "color-powerpoint" | "color-link" | "color-hypothesis-generator" | "color-citation-recommender" | "color-peer-review" | "color-survey-simulator" | "color-literature-review" | "color-research-tracer";
|
|
1995
2055
|
type IconSizeKey = keyof typeof iconSizeMap;
|
|
1996
2056
|
declare const IconMap: Record<IconName, React.ForwardRefExoticComponent<any>>;
|
|
1997
2057
|
interface IconProps extends Omit<SVGProps<SVGSVGElement>, 'fill'> {
|
|
@@ -2005,4 +2065,4 @@ interface IconProps extends Omit<SVGProps<SVGSVGElement>, 'fill'> {
|
|
|
2005
2065
|
}
|
|
2006
2066
|
declare const Icon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
2007
2067
|
|
|
2008
|
-
export { Icon, IconAddClock, IconAddToFolder, IconAi, IconAirplane, IconAndroid, IconApple, IconArrowBack, IconArrowBackward, IconArrowDown, IconArrowDownLeft, IconArrowDownward, IconArrowDropRight, IconArrowForward, IconArrowLeft, IconArrowRight, IconArrowTurn, IconArrowUp, IconArrowUpDown, IconArrowUpLeft, IconArrowUpRight, IconArrowUpward, IconBag, IconBalance, IconBell, IconBlock, IconBolt, IconBook, IconBookmark, IconBookmarkCancel, IconBooks, IconBrain, IconBulb, IconBulbExclamtionmark, IconCamera, IconCar, IconCasualShoe, IconChartBar, IconChartLineUptrend, IconCheckMark, IconCheckMarkFill, IconCheckMarkInCircle, IconChrome, IconClock, IconClose, IconCloseFill, IconCollectionAdd, IconCollections, IconColorDocx, IconColorExcel, IconColorFacebook, IconColorFire, IconColorGoogle, IconColorHtml, IconColorLiner, IconColorLinerVariation, IconColorLink, IconColorPdf, IconColorPowerpoint, IconColorTxt, IconCopy, IconCredit, IconCreditAdd, IconCreditcard, IconDarkMode, IconDescription, IconDesktop, IconDesktopOnCursor, IconDocument, IconDocumentAdd, IconDocumentCheck, IconDocumentWarning, IconDoubleArrowBackward, IconDoubleArrowForward, IconDownload, IconDropDown, IconDropUp, IconEmail, IconEnd, IconEssay, IconExclamationmark, IconExclamationmarkFill, IconExpand, IconExpandClose, IconExtend, IconFacebook, IconFeedback, IconFilter, IconFire, IconFlowchart, IconFocus, IconFolder, IconFolderAdd, IconFolderOpen, IconFolderOpenShare, IconFolderShare, IconFormalBag, IconGlobe, IconGoogle, IconGoogleExport, IconGraduationcap, IconHelp, IconHideAll, IconHighlightEdit, IconHighlighter, IconHistory, IconHome, IconHourglass, IconInfo, IconLight, IconLightMode, IconLiner, IconLink, IconList, IconLiteratureReview, IconLocation, IconLock, IconMNewTab, IconMagicPencil, IconMagicWand, IconMakeEasy, IconMap, IconMembers, IconMemo, IconMenu, IconMicroscope, IconMindmap, IconMinus, IconMobile, IconMore, IconMoreHorizontal, IconMoreVertical, IconMove, IconMoveToFolder, type IconName, IconNewChromeExtension, IconNewTab, IconNewThread, IconNewThreadFolder, IconPalette, IconPaperclip, IconParagraph, IconParaphrase, IconPencil, IconPerson, IconPersonAdd, IconPersonFill, IconPhoto, IconPlayButton, IconPlus, IconPower, type IconProps, IconQuestionBox, IconQuestionMessage, IconQuote, IconRedo, IconRegenerate, IconRemoveFromFolder, IconReport, IconRestaurant, IconRetry, IconRocket, IconSearch, IconSecretMode, IconSend, IconSetting, IconShare, IconSheetExport, IconShield, IconShieldPerson, IconShieldUsage, IconShorten, IconShowAll, IconSignOut, type IconSizeKey, IconSource, IconSpeaker, IconSpinner, IconStack, IconStar, IconStart, IconStep, IconStop, IconSummarize, IconSurvey, IconTarget, IconTeams, IconTextSelect, IconThumbDown, IconThumbUp, IconTimer, IconTranslate, IconTrash, IconTune, IconTwitter, IconUndo, IconVerificationBadge, IconViewList, IconVisibility, IconVisibilityOff, IconVolume, IconVolumeUp, IconZoomIn, IconZoomOut };
|
|
2068
|
+
export { Icon, IconAddClock, IconAddToFolder, IconAi, IconAirplane, IconAndroid, IconApple, IconArrowBack, IconArrowBackward, IconArrowDown, IconArrowDownLeft, IconArrowDownward, IconArrowDropRight, IconArrowForward, IconArrowLeft, IconArrowRight, IconArrowTurn, IconArrowUp, IconArrowUpDown, IconArrowUpLeft, IconArrowUpRight, IconArrowUpward, IconBag, IconBalance, IconBell, IconBlock, IconBolt, IconBook, IconBookmark, IconBookmarkCancel, IconBooks, IconBrain, IconBulb, IconBulbExclamtionmark, IconCamera, IconCar, IconCasualShoe, IconChartBar, IconChartLineUptrend, IconCheckMark, IconCheckMarkFill, IconCheckMarkInCircle, IconChrome, IconClock, IconClose, IconCloseFill, IconCollectionAdd, IconCollections, IconColorCitationRecommender, IconColorDocx, IconColorExcel, IconColorFacebook, IconColorFire, IconColorGoogle, IconColorHtml, IconColorHypothesisGenerator, IconColorLiner, IconColorLinerVariation, IconColorLink, IconColorLiteratureReview, IconColorPdf, IconColorPeerReview, IconColorPowerpoint, IconColorResearchTracer, IconColorSurveySimulator, IconColorTxt, IconCopy, IconCredit, IconCreditAdd, IconCreditcard, IconDarkMode, IconDescription, IconDesktop, IconDesktopOnCursor, IconDocument, IconDocumentAdd, IconDocumentCheck, IconDocumentWarning, IconDoubleArrowBackward, IconDoubleArrowForward, IconDownload, IconDropDown, IconDropUp, IconEmail, IconEnd, IconEssay, IconExclamationmark, IconExclamationmarkFill, IconExpand, IconExpandClose, IconExtend, IconFacebook, IconFeedback, IconFilter, IconFire, IconFlowchart, IconFocus, IconFolder, IconFolderAdd, IconFolderOpen, IconFolderOpenShare, IconFolderShare, IconFormalBag, IconGlobe, IconGoogle, IconGoogleExport, IconGraduationcap, IconHelp, IconHideAll, IconHighlightEdit, IconHighlighter, IconHistory, IconHome, IconHourglass, IconInfo, IconLight, IconLightMode, IconLiner, IconLink, IconList, IconLiteratureReview, IconLocation, IconLock, IconMNewTab, IconMagicPencil, IconMagicWand, IconMakeEasy, IconMap, IconMembers, IconMemo, IconMenu, IconMicroscope, IconMindmap, IconMinus, IconMobile, IconMore, IconMoreHorizontal, IconMoreVertical, IconMove, IconMoveToFolder, type IconName, IconNewChromeExtension, IconNewTab, IconNewThread, IconNewThreadFolder, IconPalette, IconPaperclip, IconParagraph, IconParaphrase, IconPencil, IconPerson, IconPersonAdd, IconPersonFill, IconPhoto, IconPlayButton, IconPlus, IconPower, type IconProps, IconQuestionBox, IconQuestionMessage, IconQuote, IconRedo, IconRegenerate, IconRemoveFromFolder, IconReport, IconRestaurant, IconRetry, IconRocket, IconSearch, IconSecretMode, IconSend, IconSetting, IconShare, IconSheetExport, IconShield, IconShieldPerson, IconShieldUsage, IconShorten, IconShowAll, IconSignOut, type IconSizeKey, IconSource, IconSpeaker, IconSpinner, IconStack, IconStar, IconStart, IconStep, IconStop, IconSummarize, IconSurvey, IconTarget, IconTeams, IconTextSelect, IconThumbDown, IconThumbUp, IconTimer, IconTranslate, IconTrash, IconTune, IconTwitter, IconUndo, IconVerificationBadge, IconViewList, IconVisibility, IconVisibilityOff, IconVolume, IconVolumeUp, IconZoomIn, IconZoomOut };
|