@xipkg/icons 0.3.0 → 0.4.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/config.ts +48 -6
- package/index.ts +96 -12
- package/package.json +7 -5
- package/src/ArrowBottom.tsx +11 -0
- package/src/ArrowLeft.tsx +11 -0
- package/src/ArrowRight.tsx +11 -0
- package/src/ArrowUp.tsx +11 -0
- package/src/Brush.tsx +11 -0
- package/src/{AddCategory.tsx → CategoryAdd.tsx} +1 -1
- package/src/{AddChannel.tsx → ChannelAdd.tsx} +1 -1
- package/src/ChevronBottom.tsx +11 -0
- package/src/ChevronLeft.tsx +11 -0
- package/src/{Arrow.tsx → ChevronRight.tsx} +1 -3
- package/src/ChevronSmallBottom.tsx +11 -0
- package/src/ChevronSmallLeft.tsx +11 -0
- package/src/ChevronSmallRight.tsx +11 -0
- package/src/ChevronSmallTop.tsx +11 -0
- package/src/ChevronUp.tsx +11 -0
- package/src/Collapse.tsx +11 -0
- package/src/ColorPicker.tsx +11 -0
- package/src/{Minus.tsx → Divider.tsx} +1 -1
- package/src/Edit.tsx +11 -0
- package/src/File.tsx +1 -1
- package/src/FileSmall.tsx +11 -0
- package/src/Filter.tsx +11 -0
- package/src/Key.tsx +11 -0
- package/src/Laptop.tsx +11 -0
- package/src/Link.tsx +1 -1
- package/src/Locked.tsx +11 -0
- package/src/LongAnswer.tsx +11 -0
- package/src/Mail.tsx +11 -0
- package/src/Minimize.tsx +11 -0
- package/src/Moon.tsx +11 -0
- package/src/MoreVert.tsx +11 -0
- package/src/{Palette.tsx → Pallet.tsx} +1 -1
- package/src/{Invite.tsx → PeopleInvite.tsx} +2 -4
- package/src/Presentation.tsx +11 -0
- package/src/PushPin.tsx +11 -0
- package/src/Reply.tsx +11 -0
- package/src/Section.tsx +11 -0
- package/src/Shape.tsx +1 -1
- package/src/SimpleAnswer.tsx +11 -0
- package/src/Sort.tsx +11 -0
- package/src/SoundOn.tsx +11 -0
- package/src/Soundoff.tsx +11 -0
- package/src/Speaker.tsx +11 -0
- package/src/Sun.tsx +11 -0
- package/src/TaskFile.tsx +11 -0
- package/src/Telegram.tsx +11 -0
- package/src/Unlocked.tsx +11 -0
- package/src/Upload.tsx +11 -0
- package/src/VariantSelect.tsx +11 -0
- package/src/Video.tsx +11 -0
- package/src/Window.tsx +11 -0
- package/tsconfig.json +114 -2
- package/.turbo/turbo-build.log +0 -14
- package/dist/index.d.ts +0 -147
- package/dist/index.js +0 -1134
package/dist/index.d.ts
DELETED
|
@@ -1,147 +0,0 @@
|
|
|
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
|
-
declare const Move: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
96
|
-
|
|
97
|
-
declare const Movie: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
98
|
-
|
|
99
|
-
declare const Music: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
100
|
-
|
|
101
|
-
declare const Nature: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
102
|
-
|
|
103
|
-
declare const Notification: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
104
|
-
|
|
105
|
-
declare const Objects: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
106
|
-
|
|
107
|
-
declare const Ol: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
108
|
-
|
|
109
|
-
declare const Palette: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
110
|
-
|
|
111
|
-
declare const Photo: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
112
|
-
|
|
113
|
-
declare const Picture: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
114
|
-
|
|
115
|
-
declare const Places: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
116
|
-
|
|
117
|
-
declare const Play: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
118
|
-
|
|
119
|
-
declare const Screenshare: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
120
|
-
|
|
121
|
-
declare const Search: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
122
|
-
|
|
123
|
-
declare const Send: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
124
|
-
|
|
125
|
-
declare const Settings: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
126
|
-
|
|
127
|
-
declare const Shape: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
128
|
-
|
|
129
|
-
declare const Stroke: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
130
|
-
|
|
131
|
-
declare const Task: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
132
|
-
|
|
133
|
-
declare const Text: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
134
|
-
|
|
135
|
-
declare const Trash: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
136
|
-
|
|
137
|
-
declare const Ul: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
138
|
-
|
|
139
|
-
declare const Underline: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
140
|
-
|
|
141
|
-
declare const Updates: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
142
|
-
|
|
143
|
-
declare const Users: ({ ...props }: IconProps) => react_jsx_runtime.JSX.Element;
|
|
144
|
-
|
|
145
|
-
declare const icons: string[];
|
|
146
|
-
|
|
147
|
-
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 };
|