@geomak/ui 6.33.0 → 6.34.1
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/chunk-4V4U2W7K.cjs +389 -0
- package/dist/chunk-4V4U2W7K.cjs.map +1 -0
- package/dist/chunk-KAFJJO5O.js +284 -0
- package/dist/chunk-KAFJJO5O.js.map +1 -0
- package/dist/icons/index.cjs +424 -0
- package/dist/icons/index.cjs.map +1 -0
- package/dist/icons/index.d.cts +274 -0
- package/dist/icons/index.d.ts +274 -0
- package/dist/icons/index.js +3 -0
- package/dist/icons/index.js.map +1 -0
- package/dist/index.cjs +455 -701
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +17 -160
- package/dist/index.d.ts +17 -160
- package/dist/index.js +169 -422
- package/dist/index.js.map +1 -1
- package/package.json +9 -2
|
@@ -0,0 +1,274 @@
|
|
|
1
|
+
import * as react from 'react';
|
|
2
|
+
import react__default from 'react';
|
|
3
|
+
|
|
4
|
+
interface IconProps extends Omit<react__default.SVGProps<SVGSVGElement>, 'ref'> {
|
|
5
|
+
/** Width + height in pixels (or any CSS length string). Default `24`. */
|
|
6
|
+
size?: number | string;
|
|
7
|
+
/**
|
|
8
|
+
* Accessible label. When set, the icon is exposed as `role="img"` with this
|
|
9
|
+
* name; when omitted, it's `aria-hidden` (decorative) — the default, since
|
|
10
|
+
* most icons sit beside a text label.
|
|
11
|
+
*/
|
|
12
|
+
title?: string;
|
|
13
|
+
/** Stroke width for outline icons. Ignored by solid icons. Default `1.5`. */
|
|
14
|
+
strokeWidth?: number;
|
|
15
|
+
}
|
|
16
|
+
interface CreateIconOptions {
|
|
17
|
+
/** SVG viewBox. Default `'0 0 24 24'`. */
|
|
18
|
+
viewBox?: string;
|
|
19
|
+
/** Render filled (fill: currentColor) instead of stroked. Default `false`. */
|
|
20
|
+
solid?: boolean;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Build an icon component that obeys the oxygen-ui icon contract:
|
|
24
|
+
*
|
|
25
|
+
* - colours itself with `currentColor` (set text colour on a parent, e.g.
|
|
26
|
+
* `className="text-accent"`, and the icon follows),
|
|
27
|
+
* - sizes via the `size` prop (px), defaulting to 24,
|
|
28
|
+
* - is decorative (`aria-hidden`) unless you pass a `title`,
|
|
29
|
+
* - forwards a ref and spreads any extra SVG props (`className`, `style`,
|
|
30
|
+
* `onClick`, …).
|
|
31
|
+
*
|
|
32
|
+
* Use it to extend the pack with your own icons so they match the built-ins:
|
|
33
|
+
*
|
|
34
|
+
* @example
|
|
35
|
+
* const Anchor = createIcon('Anchor', <path d="M12 21V8m0 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm-7 4a7 7 0 0 0 14 0M3 11h4m10 0h4" />)
|
|
36
|
+
* <Anchor size={32} className="text-accent" title="Anchor" />
|
|
37
|
+
*/
|
|
38
|
+
declare function createIcon(displayName: string, content: react__default.ReactNode, options?: CreateIconOptions): react__default.ForwardRefExoticComponent<IconProps & react__default.RefAttributes<SVGSVGElement>>;
|
|
39
|
+
type IconComponent = ReturnType<typeof createIcon>;
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* oxygen-ui icon pack — a cohesive set of outline (and a few solid) icons that
|
|
43
|
+
* colour with `currentColor` and size via the `size` prop. Extend the pack with
|
|
44
|
+
* {@link createIcon} so your own icons match the built-ins.
|
|
45
|
+
*
|
|
46
|
+
* Two ways to import:
|
|
47
|
+
* import { ChevronDown, Trash } from '@geomak/ui/icons' // tree-shakeable
|
|
48
|
+
* import { Icon } from '@geomak/ui'; <Icon.ChevronDown /> // namespace
|
|
49
|
+
*
|
|
50
|
+
* <ChevronDown /> // 24px, inherits text colour
|
|
51
|
+
* <Trash size={20} className="text-status-error" title="Delete" />
|
|
52
|
+
*/
|
|
53
|
+
declare const ChevronUp: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
54
|
+
declare const ChevronDown: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
55
|
+
declare const ChevronLeft: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
56
|
+
declare const ChevronRight: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
57
|
+
declare const ChevronsLeft: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
58
|
+
declare const ChevronsRight: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
59
|
+
declare const CaretUp: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
60
|
+
declare const CaretDown: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
61
|
+
declare const CaretLeft: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
62
|
+
declare const CaretRight: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
63
|
+
declare const ArrowUp: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
64
|
+
declare const ArrowDown: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
65
|
+
declare const ArrowLeft: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
66
|
+
declare const ArrowRight: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
67
|
+
declare const Menu: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
68
|
+
declare const DotsHorizontal: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
69
|
+
declare const DotsVertical: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
70
|
+
declare const ExternalLink: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
71
|
+
declare const X: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
72
|
+
declare const XCircle: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
73
|
+
declare const Plus: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
74
|
+
declare const PlusCircle: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
75
|
+
declare const Minus: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
76
|
+
declare const MinusCircle: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
77
|
+
declare const Check: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
78
|
+
declare const CheckCircle: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
79
|
+
declare const Search: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
80
|
+
declare const Edit: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
81
|
+
declare const Trash: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
82
|
+
declare const Copy: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
83
|
+
declare const Clipboard: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
84
|
+
declare const Download: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
85
|
+
declare const Upload: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
86
|
+
declare const Save: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
87
|
+
declare const Filter: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
88
|
+
declare const Sort: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
89
|
+
declare const Refresh: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
90
|
+
declare const Share: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
91
|
+
declare const Print: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
92
|
+
declare const Settings: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
93
|
+
declare const Sliders: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
94
|
+
declare const Maximize: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
95
|
+
declare const Minimize: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
96
|
+
declare const Info: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
97
|
+
declare const Warning: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
98
|
+
declare const Error: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
99
|
+
declare const Question: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
100
|
+
declare const Ban: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
101
|
+
declare const Bell: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
102
|
+
declare const Play: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
103
|
+
declare const Pause: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
104
|
+
declare const Stop: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
105
|
+
declare const VolumeUp: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
106
|
+
declare const VolumeOff: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
107
|
+
declare const Image: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
108
|
+
declare const Video: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
109
|
+
declare const Camera: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
110
|
+
declare const Microphone: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
111
|
+
declare const Mail: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
112
|
+
declare const Chat: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
113
|
+
declare const Phone: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
114
|
+
declare const Send: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
115
|
+
declare const User: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
116
|
+
declare const Users: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
117
|
+
declare const Home: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
118
|
+
declare const Globe: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
119
|
+
declare const MapPin: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
120
|
+
declare const Calendar: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
121
|
+
declare const Clock: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
122
|
+
declare const Document: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
123
|
+
declare const File: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
124
|
+
declare const Folder: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
125
|
+
declare const Database: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
126
|
+
declare const Grid: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
127
|
+
declare const List: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
128
|
+
declare const Table: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
129
|
+
declare const ChartBar: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
130
|
+
declare const PieChart: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
131
|
+
declare const TrendingUp: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
132
|
+
declare const TrendingDown: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
133
|
+
declare const Calculator: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
134
|
+
declare const Lock: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
135
|
+
declare const Unlock: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
136
|
+
declare const Key: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
137
|
+
declare const Shield: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
138
|
+
declare const ShieldCheck: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
139
|
+
declare const Star: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
140
|
+
declare const StarFilled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
141
|
+
declare const Heart: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
142
|
+
declare const Bookmark: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
143
|
+
declare const Tag: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
144
|
+
declare const Link: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
145
|
+
declare const Eye: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
146
|
+
declare const EyeSlash: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
147
|
+
declare const Bolt: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
148
|
+
declare const Sparkles: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
149
|
+
declare const Sun: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
150
|
+
declare const Moon: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
151
|
+
declare const Spinner: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
152
|
+
declare const Login: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
153
|
+
declare const Logout: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
154
|
+
declare const Power: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
155
|
+
declare const Icon: {
|
|
156
|
+
readonly ChevronUp: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
157
|
+
readonly ChevronDown: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
158
|
+
readonly ChevronLeft: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
159
|
+
readonly ChevronRight: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
160
|
+
readonly ChevronsLeft: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
161
|
+
readonly ChevronsRight: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
162
|
+
readonly CaretUp: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
163
|
+
readonly CaretDown: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
164
|
+
readonly CaretLeft: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
165
|
+
readonly CaretRight: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
166
|
+
readonly ArrowUp: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
167
|
+
readonly ArrowDown: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
168
|
+
readonly ArrowLeft: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
169
|
+
readonly ArrowRight: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
170
|
+
readonly Menu: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
171
|
+
readonly DotsHorizontal: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
172
|
+
readonly DotsVertical: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
173
|
+
readonly ExternalLink: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
174
|
+
readonly X: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
175
|
+
readonly XCircle: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
176
|
+
readonly Plus: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
177
|
+
readonly PlusCircle: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
178
|
+
readonly Minus: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
179
|
+
readonly MinusCircle: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
180
|
+
readonly Check: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
181
|
+
readonly CheckCircle: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
182
|
+
readonly Search: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
183
|
+
readonly Edit: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
184
|
+
readonly Trash: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
185
|
+
readonly Copy: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
186
|
+
readonly Clipboard: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
187
|
+
readonly Download: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
188
|
+
readonly Upload: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
189
|
+
readonly Save: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
190
|
+
readonly Filter: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
191
|
+
readonly Sort: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
192
|
+
readonly Refresh: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
193
|
+
readonly Share: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
194
|
+
readonly Print: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
195
|
+
readonly Settings: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
196
|
+
readonly Sliders: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
197
|
+
readonly Maximize: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
198
|
+
readonly Minimize: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
199
|
+
readonly Info: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
200
|
+
readonly Warning: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
201
|
+
readonly Error: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
202
|
+
readonly Question: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
203
|
+
readonly Ban: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
204
|
+
readonly Bell: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
205
|
+
readonly Play: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
206
|
+
readonly Pause: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
207
|
+
readonly Stop: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
208
|
+
readonly VolumeUp: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
209
|
+
readonly VolumeOff: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
210
|
+
readonly Image: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
211
|
+
readonly Video: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
212
|
+
readonly Camera: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
213
|
+
readonly Microphone: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
214
|
+
readonly Mail: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
215
|
+
readonly Chat: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
216
|
+
readonly Phone: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
217
|
+
readonly Send: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
218
|
+
readonly User: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
219
|
+
readonly Users: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
220
|
+
readonly Home: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
221
|
+
readonly Globe: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
222
|
+
readonly MapPin: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
223
|
+
readonly Calendar: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
224
|
+
readonly Clock: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
225
|
+
readonly Document: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
226
|
+
readonly File: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
227
|
+
readonly Folder: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
228
|
+
readonly Database: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
229
|
+
readonly Grid: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
230
|
+
readonly List: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
231
|
+
readonly Table: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
232
|
+
readonly ChartBar: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
233
|
+
readonly PieChart: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
234
|
+
readonly TrendingUp: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
235
|
+
readonly TrendingDown: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
236
|
+
readonly Calculator: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
237
|
+
readonly Lock: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
238
|
+
readonly Unlock: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
239
|
+
readonly Key: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
240
|
+
readonly Shield: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
241
|
+
readonly ShieldCheck: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
242
|
+
readonly Star: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
243
|
+
readonly StarFilled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
244
|
+
readonly Heart: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
245
|
+
readonly Bookmark: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
246
|
+
readonly Tag: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
247
|
+
readonly Link: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
248
|
+
readonly Eye: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
249
|
+
readonly EyeSlash: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
250
|
+
readonly Bolt: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
251
|
+
readonly Sparkles: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
252
|
+
readonly Sun: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
253
|
+
readonly Moon: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
254
|
+
readonly Spinner: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
255
|
+
readonly Login: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
256
|
+
readonly Logout: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
257
|
+
readonly Power: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
258
|
+
readonly XClose: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
259
|
+
readonly Checked: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
260
|
+
readonly Cog: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
261
|
+
readonly Tweak: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
262
|
+
readonly Expand: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
263
|
+
readonly Collapse: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
264
|
+
readonly ShowMore: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
265
|
+
readonly Delete: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
266
|
+
readonly Bookmarks: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
267
|
+
readonly CircleStack: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
268
|
+
readonly Data: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
269
|
+
readonly DoubleChevronRight: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
270
|
+
readonly Loading: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
271
|
+
readonly PowerOff: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
272
|
+
};
|
|
273
|
+
|
|
274
|
+
export { ArrowDown, ArrowLeft, ArrowRight, ArrowUp, Ban, Bell, Bolt, Bookmark, Calculator, Calendar, Camera, CaretDown, CaretLeft, CaretRight, CaretUp, ChartBar, Chat, Check, CheckCircle, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, ChevronsLeft, ChevronsRight, Clipboard, Clock, Copy, type CreateIconOptions, Database, Document, DotsHorizontal, DotsVertical, Download, Edit, Error, ExternalLink, Eye, EyeSlash, File, Filter, Folder, Globe, Grid, Heart, Home, Icon, type IconComponent, type IconProps, Image, Info, Key, Link, List, Lock, Login, Logout, Mail, MapPin, Maximize, Menu, Microphone, Minimize, Minus, MinusCircle, Moon, Pause, Phone, PieChart, Play, Plus, PlusCircle, Power, Print, Question, Refresh, Save, Search, Send, Settings, Share, Shield, ShieldCheck, Sliders, Sort, Sparkles, Spinner, Star, StarFilled, Stop, Sun, Table, Tag, Trash, TrendingDown, TrendingUp, Unlock, Upload, User, Users, Video, VolumeOff, VolumeUp, Warning, X, XCircle, createIcon };
|
|
@@ -0,0 +1,274 @@
|
|
|
1
|
+
import * as react from 'react';
|
|
2
|
+
import react__default from 'react';
|
|
3
|
+
|
|
4
|
+
interface IconProps extends Omit<react__default.SVGProps<SVGSVGElement>, 'ref'> {
|
|
5
|
+
/** Width + height in pixels (or any CSS length string). Default `24`. */
|
|
6
|
+
size?: number | string;
|
|
7
|
+
/**
|
|
8
|
+
* Accessible label. When set, the icon is exposed as `role="img"` with this
|
|
9
|
+
* name; when omitted, it's `aria-hidden` (decorative) — the default, since
|
|
10
|
+
* most icons sit beside a text label.
|
|
11
|
+
*/
|
|
12
|
+
title?: string;
|
|
13
|
+
/** Stroke width for outline icons. Ignored by solid icons. Default `1.5`. */
|
|
14
|
+
strokeWidth?: number;
|
|
15
|
+
}
|
|
16
|
+
interface CreateIconOptions {
|
|
17
|
+
/** SVG viewBox. Default `'0 0 24 24'`. */
|
|
18
|
+
viewBox?: string;
|
|
19
|
+
/** Render filled (fill: currentColor) instead of stroked. Default `false`. */
|
|
20
|
+
solid?: boolean;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Build an icon component that obeys the oxygen-ui icon contract:
|
|
24
|
+
*
|
|
25
|
+
* - colours itself with `currentColor` (set text colour on a parent, e.g.
|
|
26
|
+
* `className="text-accent"`, and the icon follows),
|
|
27
|
+
* - sizes via the `size` prop (px), defaulting to 24,
|
|
28
|
+
* - is decorative (`aria-hidden`) unless you pass a `title`,
|
|
29
|
+
* - forwards a ref and spreads any extra SVG props (`className`, `style`,
|
|
30
|
+
* `onClick`, …).
|
|
31
|
+
*
|
|
32
|
+
* Use it to extend the pack with your own icons so they match the built-ins:
|
|
33
|
+
*
|
|
34
|
+
* @example
|
|
35
|
+
* const Anchor = createIcon('Anchor', <path d="M12 21V8m0 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm-7 4a7 7 0 0 0 14 0M3 11h4m10 0h4" />)
|
|
36
|
+
* <Anchor size={32} className="text-accent" title="Anchor" />
|
|
37
|
+
*/
|
|
38
|
+
declare function createIcon(displayName: string, content: react__default.ReactNode, options?: CreateIconOptions): react__default.ForwardRefExoticComponent<IconProps & react__default.RefAttributes<SVGSVGElement>>;
|
|
39
|
+
type IconComponent = ReturnType<typeof createIcon>;
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* oxygen-ui icon pack — a cohesive set of outline (and a few solid) icons that
|
|
43
|
+
* colour with `currentColor` and size via the `size` prop. Extend the pack with
|
|
44
|
+
* {@link createIcon} so your own icons match the built-ins.
|
|
45
|
+
*
|
|
46
|
+
* Two ways to import:
|
|
47
|
+
* import { ChevronDown, Trash } from '@geomak/ui/icons' // tree-shakeable
|
|
48
|
+
* import { Icon } from '@geomak/ui'; <Icon.ChevronDown /> // namespace
|
|
49
|
+
*
|
|
50
|
+
* <ChevronDown /> // 24px, inherits text colour
|
|
51
|
+
* <Trash size={20} className="text-status-error" title="Delete" />
|
|
52
|
+
*/
|
|
53
|
+
declare const ChevronUp: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
54
|
+
declare const ChevronDown: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
55
|
+
declare const ChevronLeft: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
56
|
+
declare const ChevronRight: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
57
|
+
declare const ChevronsLeft: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
58
|
+
declare const ChevronsRight: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
59
|
+
declare const CaretUp: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
60
|
+
declare const CaretDown: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
61
|
+
declare const CaretLeft: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
62
|
+
declare const CaretRight: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
63
|
+
declare const ArrowUp: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
64
|
+
declare const ArrowDown: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
65
|
+
declare const ArrowLeft: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
66
|
+
declare const ArrowRight: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
67
|
+
declare const Menu: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
68
|
+
declare const DotsHorizontal: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
69
|
+
declare const DotsVertical: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
70
|
+
declare const ExternalLink: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
71
|
+
declare const X: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
72
|
+
declare const XCircle: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
73
|
+
declare const Plus: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
74
|
+
declare const PlusCircle: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
75
|
+
declare const Minus: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
76
|
+
declare const MinusCircle: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
77
|
+
declare const Check: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
78
|
+
declare const CheckCircle: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
79
|
+
declare const Search: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
80
|
+
declare const Edit: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
81
|
+
declare const Trash: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
82
|
+
declare const Copy: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
83
|
+
declare const Clipboard: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
84
|
+
declare const Download: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
85
|
+
declare const Upload: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
86
|
+
declare const Save: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
87
|
+
declare const Filter: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
88
|
+
declare const Sort: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
89
|
+
declare const Refresh: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
90
|
+
declare const Share: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
91
|
+
declare const Print: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
92
|
+
declare const Settings: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
93
|
+
declare const Sliders: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
94
|
+
declare const Maximize: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
95
|
+
declare const Minimize: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
96
|
+
declare const Info: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
97
|
+
declare const Warning: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
98
|
+
declare const Error: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
99
|
+
declare const Question: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
100
|
+
declare const Ban: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
101
|
+
declare const Bell: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
102
|
+
declare const Play: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
103
|
+
declare const Pause: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
104
|
+
declare const Stop: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
105
|
+
declare const VolumeUp: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
106
|
+
declare const VolumeOff: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
107
|
+
declare const Image: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
108
|
+
declare const Video: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
109
|
+
declare const Camera: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
110
|
+
declare const Microphone: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
111
|
+
declare const Mail: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
112
|
+
declare const Chat: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
113
|
+
declare const Phone: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
114
|
+
declare const Send: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
115
|
+
declare const User: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
116
|
+
declare const Users: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
117
|
+
declare const Home: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
118
|
+
declare const Globe: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
119
|
+
declare const MapPin: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
120
|
+
declare const Calendar: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
121
|
+
declare const Clock: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
122
|
+
declare const Document: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
123
|
+
declare const File: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
124
|
+
declare const Folder: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
125
|
+
declare const Database: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
126
|
+
declare const Grid: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
127
|
+
declare const List: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
128
|
+
declare const Table: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
129
|
+
declare const ChartBar: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
130
|
+
declare const PieChart: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
131
|
+
declare const TrendingUp: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
132
|
+
declare const TrendingDown: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
133
|
+
declare const Calculator: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
134
|
+
declare const Lock: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
135
|
+
declare const Unlock: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
136
|
+
declare const Key: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
137
|
+
declare const Shield: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
138
|
+
declare const ShieldCheck: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
139
|
+
declare const Star: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
140
|
+
declare const StarFilled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
141
|
+
declare const Heart: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
142
|
+
declare const Bookmark: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
143
|
+
declare const Tag: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
144
|
+
declare const Link: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
145
|
+
declare const Eye: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
146
|
+
declare const EyeSlash: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
147
|
+
declare const Bolt: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
148
|
+
declare const Sparkles: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
149
|
+
declare const Sun: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
150
|
+
declare const Moon: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
151
|
+
declare const Spinner: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
152
|
+
declare const Login: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
153
|
+
declare const Logout: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
154
|
+
declare const Power: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
155
|
+
declare const Icon: {
|
|
156
|
+
readonly ChevronUp: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
157
|
+
readonly ChevronDown: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
158
|
+
readonly ChevronLeft: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
159
|
+
readonly ChevronRight: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
160
|
+
readonly ChevronsLeft: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
161
|
+
readonly ChevronsRight: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
162
|
+
readonly CaretUp: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
163
|
+
readonly CaretDown: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
164
|
+
readonly CaretLeft: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
165
|
+
readonly CaretRight: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
166
|
+
readonly ArrowUp: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
167
|
+
readonly ArrowDown: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
168
|
+
readonly ArrowLeft: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
169
|
+
readonly ArrowRight: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
170
|
+
readonly Menu: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
171
|
+
readonly DotsHorizontal: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
172
|
+
readonly DotsVertical: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
173
|
+
readonly ExternalLink: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
174
|
+
readonly X: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
175
|
+
readonly XCircle: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
176
|
+
readonly Plus: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
177
|
+
readonly PlusCircle: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
178
|
+
readonly Minus: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
179
|
+
readonly MinusCircle: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
180
|
+
readonly Check: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
181
|
+
readonly CheckCircle: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
182
|
+
readonly Search: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
183
|
+
readonly Edit: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
184
|
+
readonly Trash: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
185
|
+
readonly Copy: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
186
|
+
readonly Clipboard: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
187
|
+
readonly Download: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
188
|
+
readonly Upload: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
189
|
+
readonly Save: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
190
|
+
readonly Filter: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
191
|
+
readonly Sort: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
192
|
+
readonly Refresh: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
193
|
+
readonly Share: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
194
|
+
readonly Print: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
195
|
+
readonly Settings: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
196
|
+
readonly Sliders: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
197
|
+
readonly Maximize: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
198
|
+
readonly Minimize: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
199
|
+
readonly Info: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
200
|
+
readonly Warning: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
201
|
+
readonly Error: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
202
|
+
readonly Question: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
203
|
+
readonly Ban: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
204
|
+
readonly Bell: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
205
|
+
readonly Play: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
206
|
+
readonly Pause: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
207
|
+
readonly Stop: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
208
|
+
readonly VolumeUp: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
209
|
+
readonly VolumeOff: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
210
|
+
readonly Image: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
211
|
+
readonly Video: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
212
|
+
readonly Camera: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
213
|
+
readonly Microphone: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
214
|
+
readonly Mail: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
215
|
+
readonly Chat: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
216
|
+
readonly Phone: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
217
|
+
readonly Send: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
218
|
+
readonly User: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
219
|
+
readonly Users: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
220
|
+
readonly Home: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
221
|
+
readonly Globe: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
222
|
+
readonly MapPin: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
223
|
+
readonly Calendar: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
224
|
+
readonly Clock: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
225
|
+
readonly Document: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
226
|
+
readonly File: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
227
|
+
readonly Folder: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
228
|
+
readonly Database: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
229
|
+
readonly Grid: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
230
|
+
readonly List: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
231
|
+
readonly Table: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
232
|
+
readonly ChartBar: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
233
|
+
readonly PieChart: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
234
|
+
readonly TrendingUp: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
235
|
+
readonly TrendingDown: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
236
|
+
readonly Calculator: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
237
|
+
readonly Lock: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
238
|
+
readonly Unlock: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
239
|
+
readonly Key: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
240
|
+
readonly Shield: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
241
|
+
readonly ShieldCheck: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
242
|
+
readonly Star: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
243
|
+
readonly StarFilled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
244
|
+
readonly Heart: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
245
|
+
readonly Bookmark: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
246
|
+
readonly Tag: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
247
|
+
readonly Link: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
248
|
+
readonly Eye: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
249
|
+
readonly EyeSlash: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
250
|
+
readonly Bolt: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
251
|
+
readonly Sparkles: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
252
|
+
readonly Sun: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
253
|
+
readonly Moon: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
254
|
+
readonly Spinner: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
255
|
+
readonly Login: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
256
|
+
readonly Logout: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
257
|
+
readonly Power: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
258
|
+
readonly XClose: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
259
|
+
readonly Checked: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
260
|
+
readonly Cog: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
261
|
+
readonly Tweak: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
262
|
+
readonly Expand: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
263
|
+
readonly Collapse: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
264
|
+
readonly ShowMore: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
265
|
+
readonly Delete: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
266
|
+
readonly Bookmarks: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
267
|
+
readonly CircleStack: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
268
|
+
readonly Data: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
269
|
+
readonly DoubleChevronRight: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
270
|
+
readonly Loading: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
271
|
+
readonly PowerOff: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
272
|
+
};
|
|
273
|
+
|
|
274
|
+
export { ArrowDown, ArrowLeft, ArrowRight, ArrowUp, Ban, Bell, Bolt, Bookmark, Calculator, Calendar, Camera, CaretDown, CaretLeft, CaretRight, CaretUp, ChartBar, Chat, Check, CheckCircle, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, ChevronsLeft, ChevronsRight, Clipboard, Clock, Copy, type CreateIconOptions, Database, Document, DotsHorizontal, DotsVertical, Download, Edit, Error, ExternalLink, Eye, EyeSlash, File, Filter, Folder, Globe, Grid, Heart, Home, Icon, type IconComponent, type IconProps, Image, Info, Key, Link, List, Lock, Login, Logout, Mail, MapPin, Maximize, Menu, Microphone, Minimize, Minus, MinusCircle, Moon, Pause, Phone, PieChart, Play, Plus, PlusCircle, Power, Print, Question, Refresh, Save, Search, Send, Settings, Share, Shield, ShieldCheck, Sliders, Sort, Sparkles, Spinner, Star, StarFilled, Stop, Sun, Table, Tag, Trash, TrendingDown, TrendingUp, Unlock, Upload, User, Users, Video, VolumeOff, VolumeUp, Warning, X, XCircle, createIcon };
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export { ArrowDown, ArrowLeft, ArrowRight, ArrowUp, Ban, Bell, Bolt, Bookmark, Calculator, Calendar, Camera, CaretDown, CaretLeft, CaretRight, CaretUp, ChartBar, Chat, Check, CheckCircle, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, ChevronsLeft, ChevronsRight, Clipboard, Clock, Copy, Database, Document, DotsHorizontal, DotsVertical, Download, Edit, Error, ExternalLink, Eye, EyeSlash, File, Filter, Folder, Globe, Grid, Heart, Home, icons_default as Icon, Image, Info, Key, Link, List, Lock, Login, Logout, Mail, MapPin, Maximize, Menu, Microphone, Minimize, Minus, MinusCircle, Moon, Pause, Phone, PieChart, Play, Plus, PlusCircle, Power, Print, Question, Refresh, Save, Search, Send, Settings, Share, Shield, ShieldCheck, Sliders, Sort, Sparkles, Spinner, Star, StarFilled, Stop, Sun, Table, Tag, Trash, TrendingDown, TrendingUp, Unlock, Upload, User, Users, Video, VolumeOff, VolumeUp, Warning, X, XCircle, createIcon } from '../chunk-KAFJJO5O.js';
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
3
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"index.js"}
|