@xipkg/icons 0.0.3
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/.turbo/turbo-build.log +14 -0
- package/config.ts +69 -0
- package/dist/index.d.ts +162 -0
- package/dist/index.js +1134 -0
- package/index.ts +143 -0
- package/package.json +33 -0
- package/src/Account.tsx +11 -0
- package/src/Activity.tsx +11 -0
- package/src/Add.tsx +11 -0
- package/src/AddCategory.tsx +8 -0
- package/src/AddChannel.tsx +8 -0
- package/src/Announce.tsx +11 -0
- package/src/Arrow.tsx +13 -0
- package/src/Bold.tsx +11 -0
- package/src/Burger.tsx +11 -0
- package/src/Calendar.tsx +11 -0
- package/src/Camera.tsx +11 -0
- package/src/Chat.tsx +8 -0
- package/src/Check.tsx +11 -0
- package/src/Cite.tsx +11 -0
- package/src/Clip.tsx +11 -0
- package/src/Clock.tsx +11 -0
- package/src/Close.tsx +11 -0
- package/src/Code.tsx +8 -0
- package/src/Copy.tsx +11 -0
- package/src/Download.tsx +11 -0
- package/src/Emotions.tsx +11 -0
- package/src/Endcall.tsx +11 -0
- package/src/Exit.tsx +11 -0
- package/src/External.tsx +8 -0
- package/src/Eyeoff.tsx +8 -0
- package/src/Eyeon.tsx +8 -0
- package/src/File.tsx +11 -0
- package/src/Flag.tsx +11 -0
- package/src/Folder.tsx +11 -0
- package/src/Food.tsx +11 -0
- package/src/Grid.tsx +11 -0
- package/src/H1.tsx +11 -0
- package/src/H2.tsx +11 -0
- package/src/H3.tsx +11 -0
- package/src/Hand.tsx +8 -0
- package/src/Heart.tsx +11 -0
- package/src/Home.tsx +11 -0
- package/src/Invite.tsx +14 -0
- package/src/Italic.tsx +11 -0
- package/src/Link.tsx +11 -0
- package/src/Maximize.tsx +8 -0
- package/src/Microphone.tsx +8 -0
- package/src/Minus.tsx +11 -0
- package/src/Move.tsx +14 -0
- package/src/Movie.tsx +14 -0
- package/src/Music.tsx +14 -0
- package/src/Nature.tsx +11 -0
- package/src/Notification.tsx +11 -0
- package/src/Objects.tsx +11 -0
- package/src/Ol.tsx +11 -0
- package/src/Palette.tsx +14 -0
- package/src/Photo.tsx +8 -0
- package/src/Picture.tsx +14 -0
- package/src/Places.tsx +11 -0
- package/src/Play.tsx +11 -0
- package/src/Screenshare.tsx +8 -0
- package/src/Search.tsx +11 -0
- package/src/Send.tsx +11 -0
- package/src/Settings.tsx +11 -0
- package/src/Shape.tsx +12 -0
- package/src/Stroke.tsx +11 -0
- package/src/Task.tsx +11 -0
- package/src/Text.tsx +11 -0
- package/src/Trash.tsx +8 -0
- package/src/Ul.tsx +11 -0
- package/src/Underline.tsx +11 -0
- package/src/Updates.tsx +11 -0
- package/src/Users.tsx +8 -0
- package/tsconfig.json +5 -0
- package/types.tsx +3 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
|
|
2
|
+
> @xipkg/icons@0.0.0 build
|
|
3
|
+
> tsup index.ts --format cjs --dts
|
|
4
|
+
|
|
5
|
+
CLI Building entry: index.ts
|
|
6
|
+
CLI Using tsconfig: tsconfig.json
|
|
7
|
+
CLI tsup v6.7.0
|
|
8
|
+
CLI Target: es6
|
|
9
|
+
CJS Build start
|
|
10
|
+
CJS dist/index.js 102.43 KB
|
|
11
|
+
CJS ⚡️ Build success in 218ms
|
|
12
|
+
DTS Build start
|
|
13
|
+
DTS ⚡️ Build success in 4717ms
|
|
14
|
+
DTS dist/index.d.ts 6.47 KB
|
package/config.ts
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
export const icons = [
|
|
2
|
+
'Account',
|
|
3
|
+
'Activity',
|
|
4
|
+
'Add',
|
|
5
|
+
'AddCategory',
|
|
6
|
+
'AddChannel',
|
|
7
|
+
'Announce',
|
|
8
|
+
'Arrow',
|
|
9
|
+
'Bold',
|
|
10
|
+
'Burger',
|
|
11
|
+
'Calendar',
|
|
12
|
+
'Camera',
|
|
13
|
+
'Chat',
|
|
14
|
+
'Check',
|
|
15
|
+
'Cite',
|
|
16
|
+
'Clip',
|
|
17
|
+
'Clock',
|
|
18
|
+
'Close',
|
|
19
|
+
'Code',
|
|
20
|
+
'Copy',
|
|
21
|
+
'Download',
|
|
22
|
+
'Emotions',
|
|
23
|
+
'Endcall',
|
|
24
|
+
'Exit',
|
|
25
|
+
'External',
|
|
26
|
+
'Eyeoff',
|
|
27
|
+
'Eyeon',
|
|
28
|
+
'File',
|
|
29
|
+
'Flag',
|
|
30
|
+
'Folder',
|
|
31
|
+
'Food',
|
|
32
|
+
'Grid',
|
|
33
|
+
'H1',
|
|
34
|
+
'H2',
|
|
35
|
+
'H3',
|
|
36
|
+
'Hand',
|
|
37
|
+
'Heart',
|
|
38
|
+
'Home',
|
|
39
|
+
'Invite',
|
|
40
|
+
'Italic',
|
|
41
|
+
'Link',
|
|
42
|
+
'Maximize',
|
|
43
|
+
'Microphone',
|
|
44
|
+
'Minus',
|
|
45
|
+
'Movie',
|
|
46
|
+
'Music',
|
|
47
|
+
'Move',
|
|
48
|
+
'Nature',
|
|
49
|
+
'Notification',
|
|
50
|
+
'Objects',
|
|
51
|
+
'Ol',
|
|
52
|
+
'Palette',
|
|
53
|
+
'Photo',
|
|
54
|
+
'Picture',
|
|
55
|
+
'Places',
|
|
56
|
+
'Play',
|
|
57
|
+
'Screenshare',
|
|
58
|
+
'Search',
|
|
59
|
+
'Send',
|
|
60
|
+
'Settings',
|
|
61
|
+
'Stroke',
|
|
62
|
+
'Task',
|
|
63
|
+
'Text',
|
|
64
|
+
'Trash',
|
|
65
|
+
'Ul',
|
|
66
|
+
'Underline',
|
|
67
|
+
'Updates',
|
|
68
|
+
'Users',
|
|
69
|
+
];
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { SvgIconProps } from '@mui/material';
|
|
3
|
+
|
|
4
|
+
type IconProps = SvgIconProps;
|
|
5
|
+
|
|
6
|
+
declare const Account: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
7
|
+
|
|
8
|
+
declare const Activity: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
9
|
+
|
|
10
|
+
declare const Add: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
11
|
+
|
|
12
|
+
declare const AddCategory: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
13
|
+
|
|
14
|
+
declare const AddChannel: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
15
|
+
|
|
16
|
+
declare const Announce: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
17
|
+
|
|
18
|
+
declare const Arrow: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
19
|
+
|
|
20
|
+
declare const Bold: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
21
|
+
|
|
22
|
+
declare const Burger: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
23
|
+
|
|
24
|
+
declare const Calendar: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
25
|
+
|
|
26
|
+
declare const Camera: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
27
|
+
|
|
28
|
+
declare const Chat: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
29
|
+
|
|
30
|
+
declare const Check: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
31
|
+
|
|
32
|
+
declare const Cite: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
33
|
+
|
|
34
|
+
declare const Clip: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
35
|
+
|
|
36
|
+
declare const Clock: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
37
|
+
|
|
38
|
+
declare const Close: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
39
|
+
|
|
40
|
+
declare const Code: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
41
|
+
|
|
42
|
+
declare const Copy: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
43
|
+
|
|
44
|
+
declare const Download: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
45
|
+
|
|
46
|
+
declare const Emotions: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
47
|
+
|
|
48
|
+
declare const Endcall: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
49
|
+
|
|
50
|
+
declare const Exit: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
51
|
+
|
|
52
|
+
declare const External: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
53
|
+
|
|
54
|
+
declare const Eyeoff: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
55
|
+
|
|
56
|
+
declare const Eyeon: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
57
|
+
|
|
58
|
+
declare const File: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
59
|
+
|
|
60
|
+
declare const Flag: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
61
|
+
|
|
62
|
+
declare const Folder: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
63
|
+
|
|
64
|
+
declare const Food: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
65
|
+
|
|
66
|
+
declare const Grid: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
67
|
+
|
|
68
|
+
declare const H1: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
69
|
+
|
|
70
|
+
declare const H2: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
71
|
+
|
|
72
|
+
declare const H3: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
73
|
+
|
|
74
|
+
declare const Hand: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
75
|
+
|
|
76
|
+
declare const Heart: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
77
|
+
|
|
78
|
+
declare const Home: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
79
|
+
|
|
80
|
+
type InviteProps = {
|
|
81
|
+
[key: string]: any;
|
|
82
|
+
};
|
|
83
|
+
declare const Invite: ({ ...props }: InviteProps) => react_jsx_runtime.JSX.Element;
|
|
84
|
+
|
|
85
|
+
declare const Italic: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
86
|
+
|
|
87
|
+
declare const Link: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
88
|
+
|
|
89
|
+
declare const Maximize: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
90
|
+
|
|
91
|
+
declare const Microphone: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
92
|
+
|
|
93
|
+
declare const Minus: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
94
|
+
|
|
95
|
+
type MoveProps = {
|
|
96
|
+
[key: string]: any;
|
|
97
|
+
};
|
|
98
|
+
declare const Move: ({ ...props }: MoveProps) => react_jsx_runtime.JSX.Element;
|
|
99
|
+
|
|
100
|
+
type MovieProps = {
|
|
101
|
+
[key: string]: any;
|
|
102
|
+
};
|
|
103
|
+
declare const Movie: ({ ...props }: MovieProps) => react_jsx_runtime.JSX.Element;
|
|
104
|
+
|
|
105
|
+
type MusicProps = {
|
|
106
|
+
[key: string]: any;
|
|
107
|
+
};
|
|
108
|
+
declare const Music: ({ ...props }: MusicProps) => react_jsx_runtime.JSX.Element;
|
|
109
|
+
|
|
110
|
+
declare const Nature: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
111
|
+
|
|
112
|
+
declare const Notification: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
113
|
+
|
|
114
|
+
declare const Objects: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
115
|
+
|
|
116
|
+
declare const Ol: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
117
|
+
|
|
118
|
+
type PaletteProps = {
|
|
119
|
+
[key: string]: any;
|
|
120
|
+
};
|
|
121
|
+
declare const Palette: ({ ...props }: PaletteProps) => react_jsx_runtime.JSX.Element;
|
|
122
|
+
|
|
123
|
+
declare const Photo: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
124
|
+
|
|
125
|
+
type PictureProps = {
|
|
126
|
+
[key: string]: any;
|
|
127
|
+
};
|
|
128
|
+
declare const Picture: ({ ...props }: PictureProps) => react_jsx_runtime.JSX.Element;
|
|
129
|
+
|
|
130
|
+
declare const Places: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
131
|
+
|
|
132
|
+
declare const Play: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
133
|
+
|
|
134
|
+
declare const Screenshare: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
135
|
+
|
|
136
|
+
declare const Search: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
137
|
+
|
|
138
|
+
declare const Send: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
139
|
+
|
|
140
|
+
declare const Settings: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
141
|
+
|
|
142
|
+
declare const Shape: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
143
|
+
|
|
144
|
+
declare const Stroke: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
145
|
+
|
|
146
|
+
declare const Task: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
147
|
+
|
|
148
|
+
declare const Text: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
149
|
+
|
|
150
|
+
declare const Trash: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
151
|
+
|
|
152
|
+
declare const Ul: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
153
|
+
|
|
154
|
+
declare const Underline: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
155
|
+
|
|
156
|
+
declare const Updates: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
157
|
+
|
|
158
|
+
declare const Users: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
159
|
+
|
|
160
|
+
declare const icons: string[];
|
|
161
|
+
|
|
162
|
+
export { Account, Activity, Add, AddCategory, AddChannel, Announce, Arrow, Bold, Burger, Calendar, Camera, Chat, Check, Cite, Clip, Clock, Close, Code, Copy, Download, Emotions, Endcall, Exit, External, Eyeoff, Eyeon, File, Flag, Folder, Food, Grid, H1, H2, H3, Hand, Heart, Home, IconProps, Invite, Italic, Link, Maximize, Microphone, Minus, Move, Movie, Music, Nature, Notification, Objects, Ol, Palette, Photo, Picture, Places, Play, Screenshare, Search, Send, Settings, Shape, Stroke, Task, Text, Trash, Ul, Underline, Updates, Users, icons };
|