@yoroll/react-icon 0.0.13 → 0.0.14

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.
Files changed (39) hide show
  1. package/dist/index.cjs +962 -483
  2. package/dist/index.iife.js +931 -481
  3. package/dist/index.iife.min.js +6 -6
  4. package/dist/index.js +1115 -607
  5. package/dist/index.min.cjs +2 -2
  6. package/dist/index.min.js +2 -2
  7. package/dist/types/components/Aboutus.d.ts +4 -0
  8. package/dist/types/components/Announcement.d.ts +4 -0
  9. package/dist/types/components/Changeprofilephoto.d.ts +4 -0
  10. package/dist/types/components/DownFilled.d.ts +4 -0
  11. package/dist/types/components/DownleftFilled.d.ts +4 -0
  12. package/dist/types/components/DownrightFilled.d.ts +4 -0
  13. package/dist/types/components/FiletypeImageFilled.d.ts +4 -0
  14. package/dist/types/components/FiletypeTxtFilled.d.ts +4 -0
  15. package/dist/types/components/FiletypeTxtLumiFilled.d.ts +4 -0
  16. package/dist/types/components/FiletypeWordFilled.d.ts +4 -0
  17. package/dist/types/components/FiletypeWordLumiFilled.d.ts +4 -0
  18. package/dist/types/components/GamecontrolNone.d.ts +4 -0
  19. package/dist/types/components/Gameui.d.ts +4 -0
  20. package/dist/types/components/Hotareacenter.d.ts +4 -0
  21. package/dist/types/components/LeftFilled.d.ts +4 -0
  22. package/dist/types/components/MoreHorizontal.d.ts +4 -0
  23. package/dist/types/components/MouseDrag.d.ts +4 -0
  24. package/dist/types/components/MouseMove.d.ts +4 -0
  25. package/dist/types/components/MouseNumberchange.d.ts +4 -0
  26. package/dist/types/components/OppsFilled.d.ts +4 -0
  27. package/dist/types/components/OptionalcheckedFilled.d.ts +4 -0
  28. package/dist/types/components/Optionaluncheck.d.ts +4 -0
  29. package/dist/types/components/Packagegame.d.ts +4 -0
  30. package/dist/types/components/Publish.d.ts +4 -0
  31. package/dist/types/components/RightFilled.d.ts +4 -0
  32. package/dist/types/components/SwitchOffFilled.d.ts +4 -0
  33. package/dist/types/components/UpFilled.d.ts +4 -0
  34. package/dist/types/components/UpleftFilled.d.ts +4 -0
  35. package/dist/types/components/UprightFilled.d.ts +4 -0
  36. package/dist/types/components/Withdrawgame.d.ts +4 -0
  37. package/dist/types/components/index.d.ts +30 -1
  38. package/package.json +2 -3
  39. package/dist/types/components/Uncheck.d.ts +0 -4
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconAboutus: React.FC<IconProps>;
4
+ export default IconAboutus;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconAnnouncement: React.FC<IconProps>;
4
+ export default IconAnnouncement;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconChangeprofilephoto: React.FC<IconProps>;
4
+ export default IconChangeprofilephoto;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconDownFilled: React.FC<IconProps>;
4
+ export default IconDownFilled;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconDownleftFilled: React.FC<IconProps>;
4
+ export default IconDownleftFilled;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconDownrightFilled: React.FC<IconProps>;
4
+ export default IconDownrightFilled;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconFiletypeImageFilled: React.FC<IconProps>;
4
+ export default IconFiletypeImageFilled;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconFiletypeTxtFilled: React.FC<IconProps>;
4
+ export default IconFiletypeTxtFilled;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconFiletypeTxtLumiFilled: React.FC<IconProps>;
4
+ export default IconFiletypeTxtLumiFilled;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconFiletypeWordFilled: React.FC<IconProps>;
4
+ export default IconFiletypeWordFilled;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconFiletypeWordLumiFilled: React.FC<IconProps>;
4
+ export default IconFiletypeWordLumiFilled;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconGamecontrolNone: React.FC<IconProps>;
4
+ export default IconGamecontrolNone;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconGameui: React.FC<IconProps>;
4
+ export default IconGameui;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconHotareacenter: React.FC<IconProps>;
4
+ export default IconHotareacenter;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconLeftFilled: React.FC<IconProps>;
4
+ export default IconLeftFilled;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconMoreHorizontal: React.FC<IconProps>;
4
+ export default IconMoreHorizontal;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconMouseDrag: React.FC<IconProps>;
4
+ export default IconMouseDrag;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconMouseMove: React.FC<IconProps>;
4
+ export default IconMouseMove;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconMouseNumberchange: React.FC<IconProps>;
4
+ export default IconMouseNumberchange;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconOppsFilled: React.FC<IconProps>;
4
+ export default IconOppsFilled;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconOptionalcheckedFilled: React.FC<IconProps>;
4
+ export default IconOptionalcheckedFilled;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconOptionaluncheck: React.FC<IconProps>;
4
+ export default IconOptionaluncheck;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconPackagegame: React.FC<IconProps>;
4
+ export default IconPackagegame;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconPublish: React.FC<IconProps>;
4
+ export default IconPublish;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconRightFilled: React.FC<IconProps>;
4
+ export default IconRightFilled;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconSwitchOffFilled: React.FC<IconProps>;
4
+ export default IconSwitchOffFilled;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconUpFilled: React.FC<IconProps>;
4
+ export default IconUpFilled;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconUpleftFilled: React.FC<IconProps>;
4
+ export default IconUpleftFilled;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconUprightFilled: React.FC<IconProps>;
4
+ export default IconUprightFilled;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from '.';
3
+ declare const IconWithdrawgame: React.FC<IconProps>;
4
+ export default IconWithdrawgame;
@@ -1,10 +1,12 @@
1
1
  export { default as IconHomepage } from './Homepage';
2
2
  export { default as IconAiwriting } from './Aiwriting';
3
3
  export { default as IconUploadimage } from './Uploadimage';
4
+ export { default as IconAboutus } from './Aboutus';
4
5
  export { default as IconAddSceneChoice } from './AddSceneChoice';
5
6
  export { default as IconAdd } from './Add';
6
7
  export { default as IconAgreements } from './Agreements';
7
8
  export { default as IconAngleDown } from './AngleDown';
9
+ export { default as IconAnnouncement } from './Announcement';
8
10
  export { default as IconArtboard } from './Artboard';
9
11
  export { default as IconAssetsFilled } from './AssetsFilled';
10
12
  export { default as IconAssets } from './Assets';
@@ -12,6 +14,7 @@ export { default as IconBacktoprojects } from './Backtoprojects';
12
14
  export { default as IconBackward } from './Backward';
13
15
  export { default as IconBatchShots } from './BatchShots';
14
16
  export { default as IconCanvasmode } from './Canvasmode';
17
+ export { default as IconChangeprofilephoto } from './Changeprofilephoto';
15
18
  export { default as IconChaptercollapse } from './Chaptercollapse';
16
19
  export { default as IconChapterexpand } from './Chapterexpand';
17
20
  export { default as IconCheck } from './Check';
@@ -22,14 +25,22 @@ export { default as IconCreditFilled } from './CreditFilled';
22
25
  export { default as IconCursor } from './Cursor';
23
26
  export { default as IconDeleteSceneChoice } from './DeleteSceneChoice';
24
27
  export { default as IconDelete } from './Delete';
28
+ export { default as IconDownFilled } from './DownFilled';
29
+ export { default as IconDownleftFilled } from './DownleftFilled';
25
30
  export { default as IconDownload } from './Download';
31
+ export { default as IconDownrightFilled } from './DownrightFilled';
26
32
  export { default as IconDraghandleFilled } from './DraghandleFilled';
27
33
  export { default as IconFeedbackFailFilled } from './FeedbackFailFilled';
28
34
  export { default as IconFeedbackPendingFilled } from './FeedbackPendingFilled';
29
35
  export { default as IconFeedbackProblemFilled } from './FeedbackProblemFilled';
30
36
  export { default as IconFeedbackProblem } from './FeedbackProblem';
37
+ export { default as IconFiletypeImageFilled } from './FiletypeImageFilled';
31
38
  export { default as IconFiletypePdfFilled } from './FiletypePdfFilled';
32
39
  export { default as IconFiletypePdfLumiFilled } from './FiletypePdfLumiFilled';
40
+ export { default as IconFiletypeTxtFilled } from './FiletypeTxtFilled';
41
+ export { default as IconFiletypeTxtLumiFilled } from './FiletypeTxtLumiFilled';
42
+ export { default as IconFiletypeWordFilled } from './FiletypeWordFilled';
43
+ export { default as IconFiletypeWordLumiFilled } from './FiletypeWordLumiFilled';
33
44
  export { default as IconFoldedMenu } from './FoldedMenu';
34
45
  export { default as IconGameFilled } from './GameFilled';
35
46
  export { default as IconGame } from './Game';
@@ -38,8 +49,10 @@ export { default as IconGamebackup } from './Gamebackup';
38
49
  export { default as IconGamecontrolChoice } from './GamecontrolChoice';
39
50
  export { default as IconGamecontrolGameplay } from './GamecontrolGameplay';
40
51
  export { default as IconGamecontrolLinear } from './GamecontrolLinear';
52
+ export { default as IconGamecontrolNone } from './GamecontrolNone';
41
53
  export { default as IconGamelanguage } from './Gamelanguage';
42
54
  export { default as IconGamepreview } from './Gamepreview';
55
+ export { default as IconGameui } from './Gameui';
43
56
  export { default as IconGenerateMultimage } from './GenerateMultimage';
44
57
  export { default as IconGenerateFilled } from './GenerateFilled';
45
58
  export { default as IconGenerateFrameStart } from './GenerateFrameStart';
@@ -58,10 +71,12 @@ export { default as IconGoogleLogoFilled } from './GoogleLogoFilled';
58
71
  export { default as IconHandtool } from './Handtool';
59
72
  export { default as IconHelp } from './Help';
60
73
  export { default as IconHomepageFilled } from './HomepageFilled';
74
+ export { default as IconHotareacenter } from './Hotareacenter';
61
75
  export { default as IconImageGeneration } from './ImageGeneration';
62
76
  export { default as IconImageLoadFailedFilled } from './ImageLoadFailedFilled';
63
77
  export { default as IconInfo } from './Info';
64
78
  export { default as IconInvitecode } from './Invitecode';
79
+ export { default as IconLeftFilled } from './LeftFilled';
65
80
  export { default as IconLoading } from './Loading';
66
81
  export { default as IconLogin } from './Login';
67
82
  export { default as IconLogout } from './Logout';
@@ -73,15 +88,23 @@ export { default as IconModelSoraFilled } from './ModelSoraFilled';
73
88
  export { default as IconModelNanobananaLogoNomoFilled } from './ModelNanobananaLogoNomoFilled';
74
89
  export { default as IconModels } from './Models';
75
90
  export { default as IconMoreCollapse } from './MoreCollapse';
91
+ export { default as IconMoreHorizontal } from './MoreHorizontal';
76
92
  export { default as IconMoreShowed } from './MoreShowed';
77
93
  export { default as IconMore } from './More';
78
94
  export { default as IconMoresettings } from './Moresettings';
95
+ export { default as IconMouseDrag } from './MouseDrag';
96
+ export { default as IconMouseMove } from './MouseMove';
97
+ export { default as IconMouseNumberchange } from './MouseNumberchange';
79
98
  export { default as IconMusicassets } from './Musicassets';
80
99
  export { default as IconMute } from './Mute';
81
100
  export { default as IconNext } from './Next';
82
101
  export { default as IconNextscene } from './Nextscene';
83
102
  export { default as IconOneclickgenerate } from './Oneclickgenerate';
84
103
  export { default as IconOpendemo } from './Opendemo';
104
+ export { default as IconOppsFilled } from './OppsFilled';
105
+ export { default as IconOptionalcheckedFilled } from './OptionalcheckedFilled';
106
+ export { default as IconOptionaluncheck } from './Optionaluncheck';
107
+ export { default as IconPackagegame } from './Packagegame';
85
108
  export { default as IconPageError } from './PageError';
86
109
  export { default as IconParameters } from './Parameters';
87
110
  export { default as IconPause } from './Pause';
@@ -94,12 +117,14 @@ export { default as IconPlay } from './Play';
94
117
  export { default as IconPreviouscene } from './Previouscene';
95
118
  export { default as IconProblemNoticeFilled } from './ProblemNoticeFilled';
96
119
  export { default as IconProblem } from './Problem';
120
+ export { default as IconPublish } from './Publish';
97
121
  export { default as IconRatio169 } from './Ratio169';
98
122
  export { default as IconRatio11 } from './Ratio11';
99
123
  export { default as IconRatio916 } from './Ratio916';
100
124
  export { default as IconRatio } from './Ratio';
101
125
  export { default as IconReEdit } from './ReEdit';
102
126
  export { default as IconRegenerate } from './Regenerate';
127
+ export { default as IconRightFilled } from './RightFilled';
103
128
  export { default as IconSceneNext } from './SceneNext';
104
129
  export { default as IconScriptmode } from './Scriptmode';
105
130
  export { default as IconShareFilled } from './ShareFilled';
@@ -111,20 +136,24 @@ export { default as IconSoundOn } from './SoundOn';
111
136
  export { default as IconStoryboard } from './Storyboard';
112
137
  export { default as IconStyleAutoFilled } from './StyleAutoFilled';
113
138
  export { default as IconStyle } from './Style';
139
+ export { default as IconSwitchOffFilled } from './SwitchOffFilled';
114
140
  export { default as IconSwitchOnFilled } from './SwitchOnFilled';
115
141
  export { default as IconTarget } from './Target';
116
142
  export { default as IconTextLogo } from './TextLogo';
117
143
  export { default as IconTips } from './Tips';
118
144
  export { default as IconToolsFilled } from './ToolsFilled';
119
145
  export { default as IconTools } from './Tools';
120
- export { default as IconUncheck } from './Uncheck';
146
+ export { default as IconUpFilled } from './UpFilled';
147
+ export { default as IconUpleftFilled } from './UpleftFilled';
121
148
  export { default as IconUploadfiles } from './Uploadfiles';
149
+ export { default as IconUprightFilled } from './UprightFilled';
122
150
  export { default as IconUserfeedback } from './Userfeedback';
123
151
  export { default as IconVideoGeneration } from './VideoGeneration';
124
152
  export { default as IconVideoLength } from './VideoLength';
125
153
  export { default as IconVideogenerate } from './Videogenerate';
126
154
  export { default as IconVisualstyles } from './Visualstyles';
127
155
  export { default as IconVolume } from './Volume';
156
+ export { default as IconWithdrawgame } from './Withdrawgame';
128
157
  export { default as IconZoomin } from './Zoomin';
129
158
  export { default as IconZoomout } from './Zoomout';
130
159
  export type IconProps = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yoroll/react-icon",
3
- "version": "0.0.13",
3
+ "version": "0.0.14",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",
@@ -53,6 +53,5 @@
53
53
  },
54
54
  "sideEffects": false,
55
55
  "unpkg": "dist/index.iife.min.js",
56
- "jsdelivr": "dist/index.iife.min.js",
57
- "devDependencies": {}
56
+ "jsdelivr": "dist/index.iife.min.js"
58
57
  }
@@ -1,4 +0,0 @@
1
- import React from 'react';
2
- import { IconProps } from '.';
3
- declare const IconUncheck: React.FC<IconProps>;
4
- export default IconUncheck;