@deepanmano/berry-icon-library 1.0.52 → 1.0.53
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/index.d.ts +141 -134
- package/dist/index.js +2546 -2358
- package/dist/index.js.map +59 -58
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,292 +1,292 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
|
|
3
|
-
export interface
|
|
3
|
+
export interface BerryTaskRoundedIcon200Props extends React.SVGProps<SVGSVGElement> {
|
|
4
4
|
size?: number | string;
|
|
5
5
|
color?: string;
|
|
6
6
|
width?: number | string;
|
|
7
7
|
height?: number | string;
|
|
8
8
|
}
|
|
9
|
-
export declare const
|
|
10
|
-
export interface
|
|
9
|
+
export declare const BerryTaskRoundedIcon200: ({ size, color, width, height, ...rest }: BerryTaskRoundedIcon200Props) => React.JSX.Element;
|
|
10
|
+
export interface FamilyBerryGraphicProps extends React.SVGProps<SVGSVGElement> {
|
|
11
11
|
size?: number | string;
|
|
12
12
|
color?: string;
|
|
13
13
|
width?: number | string;
|
|
14
14
|
height?: number | string;
|
|
15
15
|
}
|
|
16
|
-
export declare const
|
|
17
|
-
export interface
|
|
16
|
+
export declare const FamilyBerryGraphic: ({ size, color, width, height, ...rest }: FamilyBerryGraphicProps) => React.JSX.Element;
|
|
17
|
+
export interface AccountCircleIconProps extends React.SVGProps<SVGSVGElement> {
|
|
18
18
|
size?: number | string;
|
|
19
19
|
color?: string;
|
|
20
20
|
width?: number | string;
|
|
21
21
|
height?: number | string;
|
|
22
22
|
}
|
|
23
|
-
export declare const
|
|
24
|
-
export interface
|
|
23
|
+
export declare const AccountCircleIcon: ({ size, color, width, height, ...rest }: AccountCircleIconProps) => React.JSX.Element;
|
|
24
|
+
export interface BerryFormsRoundedIcon200Props extends React.SVGProps<SVGSVGElement> {
|
|
25
25
|
size?: number | string;
|
|
26
26
|
color?: string;
|
|
27
27
|
width?: number | string;
|
|
28
28
|
height?: number | string;
|
|
29
29
|
}
|
|
30
|
-
export declare const
|
|
31
|
-
export interface
|
|
30
|
+
export declare const BerryFormsRoundedIcon200: ({ size, color, width, height, ...rest }: BerryFormsRoundedIcon200Props) => React.JSX.Element;
|
|
31
|
+
export interface AdultBerryGraphicProps extends React.SVGProps<SVGSVGElement> {
|
|
32
32
|
size?: number | string;
|
|
33
33
|
color?: string;
|
|
34
34
|
width?: number | string;
|
|
35
35
|
height?: number | string;
|
|
36
36
|
}
|
|
37
|
-
export declare const
|
|
38
|
-
export interface
|
|
37
|
+
export declare const AdultBerryGraphic: ({ size, color, width, height, ...rest }: AdultBerryGraphicProps) => React.JSX.Element;
|
|
38
|
+
export interface MobileIconProps extends React.SVGProps<SVGSVGElement> {
|
|
39
39
|
size?: number | string;
|
|
40
40
|
color?: string;
|
|
41
41
|
width?: number | string;
|
|
42
42
|
height?: number | string;
|
|
43
43
|
}
|
|
44
|
-
export declare const
|
|
45
|
-
export interface
|
|
44
|
+
export declare const MobileIcon: ({ size, color, width, height, ...rest }: MobileIconProps) => React.JSX.Element;
|
|
45
|
+
export interface MoreVerticalIconProps extends React.SVGProps<SVGSVGElement> {
|
|
46
46
|
size?: number | string;
|
|
47
47
|
color?: string;
|
|
48
48
|
width?: number | string;
|
|
49
49
|
height?: number | string;
|
|
50
50
|
}
|
|
51
|
-
export declare const
|
|
52
|
-
export interface
|
|
51
|
+
export declare const MoreVerticalIcon: ({ size, color, width, height, ...rest }: MoreVerticalIconProps) => React.JSX.Element;
|
|
52
|
+
export interface MailIconProps extends React.SVGProps<SVGSVGElement> {
|
|
53
53
|
size?: number | string;
|
|
54
54
|
color?: string;
|
|
55
55
|
width?: number | string;
|
|
56
56
|
height?: number | string;
|
|
57
57
|
}
|
|
58
|
-
export declare const
|
|
59
|
-
export interface
|
|
58
|
+
export declare const MailIcon: ({ size, color, width, height, ...rest }: MailIconProps) => React.JSX.Element;
|
|
59
|
+
export interface DeleteIconProps extends React.SVGProps<SVGSVGElement> {
|
|
60
60
|
size?: number | string;
|
|
61
61
|
color?: string;
|
|
62
62
|
width?: number | string;
|
|
63
63
|
height?: number | string;
|
|
64
64
|
}
|
|
65
|
-
export declare const
|
|
66
|
-
export interface
|
|
65
|
+
export declare const DeleteIcon: ({ size, color, width, height, ...rest }: DeleteIconProps) => React.JSX.Element;
|
|
66
|
+
export interface ChildBerryGraphicProps extends React.SVGProps<SVGSVGElement> {
|
|
67
67
|
size?: number | string;
|
|
68
68
|
color?: string;
|
|
69
69
|
width?: number | string;
|
|
70
70
|
height?: number | string;
|
|
71
71
|
}
|
|
72
|
-
export declare const
|
|
73
|
-
export interface
|
|
72
|
+
export declare const ChildBerryGraphic: ({ size, color, width, height, ...rest }: ChildBerryGraphicProps) => React.JSX.Element;
|
|
73
|
+
export interface BerryReportsRoundedIcon200Props extends React.SVGProps<SVGSVGElement> {
|
|
74
74
|
size?: number | string;
|
|
75
75
|
color?: string;
|
|
76
76
|
width?: number | string;
|
|
77
77
|
height?: number | string;
|
|
78
78
|
}
|
|
79
|
-
export declare const
|
|
80
|
-
export interface
|
|
79
|
+
export declare const BerryReportsRoundedIcon200: ({ size, color, width, height, ...rest }: BerryReportsRoundedIcon200Props) => React.JSX.Element;
|
|
80
|
+
export interface LocationIconProps extends React.SVGProps<SVGSVGElement> {
|
|
81
81
|
size?: number | string;
|
|
82
82
|
color?: string;
|
|
83
83
|
width?: number | string;
|
|
84
84
|
height?: number | string;
|
|
85
85
|
}
|
|
86
|
-
export declare const
|
|
87
|
-
export interface
|
|
86
|
+
export declare const LocationIcon: ({ size, color, width, height, ...rest }: LocationIconProps) => React.JSX.Element;
|
|
87
|
+
export interface InfoIconProps extends React.SVGProps<SVGSVGElement> {
|
|
88
88
|
size?: number | string;
|
|
89
89
|
color?: string;
|
|
90
90
|
width?: number | string;
|
|
91
91
|
height?: number | string;
|
|
92
92
|
}
|
|
93
|
-
export declare const
|
|
94
|
-
export interface
|
|
93
|
+
export declare const InfoIcon: ({ size, color, width, height, ...rest }: InfoIconProps) => React.JSX.Element;
|
|
94
|
+
export interface CreditCardIconProps extends React.SVGProps<SVGSVGElement> {
|
|
95
95
|
size?: number | string;
|
|
96
96
|
color?: string;
|
|
97
97
|
width?: number | string;
|
|
98
98
|
height?: number | string;
|
|
99
99
|
}
|
|
100
|
-
export declare const
|
|
101
|
-
export interface
|
|
100
|
+
export declare const CreditCardIcon: ({ size, color, width, height, ...rest }: CreditCardIconProps) => React.JSX.Element;
|
|
101
|
+
export interface BerryNerdRoundedIcon200Props extends React.SVGProps<SVGSVGElement> {
|
|
102
102
|
size?: number | string;
|
|
103
103
|
color?: string;
|
|
104
104
|
width?: number | string;
|
|
105
105
|
height?: number | string;
|
|
106
106
|
}
|
|
107
|
-
export declare const
|
|
108
|
-
export interface
|
|
107
|
+
export declare const BerryNerdRoundedIcon200: ({ size, color, width, height, ...rest }: BerryNerdRoundedIcon200Props) => React.JSX.Element;
|
|
108
|
+
export interface BerryPlansRoundedIcon200Props extends React.SVGProps<SVGSVGElement> {
|
|
109
109
|
size?: number | string;
|
|
110
110
|
color?: string;
|
|
111
111
|
width?: number | string;
|
|
112
112
|
height?: number | string;
|
|
113
113
|
}
|
|
114
|
-
export declare const
|
|
115
|
-
export interface
|
|
114
|
+
export declare const BerryPlansRoundedIcon200: ({ size, color, width, height, ...rest }: BerryPlansRoundedIcon200Props) => React.JSX.Element;
|
|
115
|
+
export interface HomeIconProps extends React.SVGProps<SVGSVGElement> {
|
|
116
116
|
size?: number | string;
|
|
117
117
|
color?: string;
|
|
118
118
|
width?: number | string;
|
|
119
119
|
height?: number | string;
|
|
120
120
|
}
|
|
121
|
-
export declare const
|
|
122
|
-
export interface
|
|
121
|
+
export declare const HomeIcon: ({ size, color, width, height, ...rest }: HomeIconProps) => React.JSX.Element;
|
|
122
|
+
export interface ExpandCloseIconProps extends React.SVGProps<SVGSVGElement> {
|
|
123
123
|
size?: number | string;
|
|
124
124
|
color?: string;
|
|
125
125
|
width?: number | string;
|
|
126
126
|
height?: number | string;
|
|
127
127
|
}
|
|
128
|
-
export declare const
|
|
129
|
-
export interface
|
|
128
|
+
export declare const ExpandCloseIcon: ({ size, color, width, height, ...rest }: ExpandCloseIconProps) => React.JSX.Element;
|
|
129
|
+
export interface ArrowLeftIcon300Props extends React.SVGProps<SVGSVGElement> {
|
|
130
130
|
size?: number | string;
|
|
131
131
|
color?: string;
|
|
132
132
|
width?: number | string;
|
|
133
133
|
height?: number | string;
|
|
134
134
|
}
|
|
135
|
-
export declare const
|
|
136
|
-
export interface
|
|
135
|
+
export declare const ArrowLeftIcon300: ({ size, color, width, height, ...rest }: ArrowLeftIcon300Props) => React.JSX.Element;
|
|
136
|
+
export interface LockIconProps extends React.SVGProps<SVGSVGElement> {
|
|
137
137
|
size?: number | string;
|
|
138
138
|
color?: string;
|
|
139
139
|
width?: number | string;
|
|
140
140
|
height?: number | string;
|
|
141
141
|
}
|
|
142
|
-
export declare const
|
|
143
|
-
export interface
|
|
142
|
+
export declare const LockIcon: ({ size, color, width, height, ...rest }: LockIconProps) => React.JSX.Element;
|
|
143
|
+
export interface PracticeIconProps extends React.SVGProps<SVGSVGElement> {
|
|
144
144
|
size?: number | string;
|
|
145
145
|
color?: string;
|
|
146
146
|
width?: number | string;
|
|
147
147
|
height?: number | string;
|
|
148
148
|
}
|
|
149
|
-
export declare const
|
|
150
|
-
export interface
|
|
149
|
+
export declare const PracticeIcon: ({ size, color, width, height, ...rest }: PracticeIconProps) => React.JSX.Element;
|
|
150
|
+
export interface SearchIconProps extends React.SVGProps<SVGSVGElement> {
|
|
151
151
|
size?: number | string;
|
|
152
152
|
color?: string;
|
|
153
153
|
width?: number | string;
|
|
154
154
|
height?: number | string;
|
|
155
155
|
}
|
|
156
|
-
export declare const
|
|
157
|
-
export interface
|
|
156
|
+
export declare const SearchIcon: ({ size, color, width, height, ...rest }: SearchIconProps) => React.JSX.Element;
|
|
157
|
+
export interface ConversationIconProps extends React.SVGProps<SVGSVGElement> {
|
|
158
158
|
size?: number | string;
|
|
159
159
|
color?: string;
|
|
160
160
|
width?: number | string;
|
|
161
161
|
height?: number | string;
|
|
162
162
|
}
|
|
163
|
-
export declare const
|
|
164
|
-
export interface
|
|
163
|
+
export declare const ConversationIcon: ({ size, color, width, height, ...rest }: ConversationIconProps) => React.JSX.Element;
|
|
164
|
+
export interface DraftIconProps extends React.SVGProps<SVGSVGElement> {
|
|
165
165
|
size?: number | string;
|
|
166
166
|
color?: string;
|
|
167
167
|
width?: number | string;
|
|
168
168
|
height?: number | string;
|
|
169
169
|
}
|
|
170
|
-
export declare const
|
|
171
|
-
export interface
|
|
170
|
+
export declare const DraftIcon: ({ size, color, width, height, ...rest }: DraftIconProps) => React.JSX.Element;
|
|
171
|
+
export interface CompletedBerryGraphicsProps extends React.SVGProps<SVGSVGElement> {
|
|
172
172
|
size?: number | string;
|
|
173
173
|
color?: string;
|
|
174
174
|
width?: number | string;
|
|
175
175
|
height?: number | string;
|
|
176
176
|
}
|
|
177
|
-
export declare const
|
|
178
|
-
export interface
|
|
177
|
+
export declare const CompletedBerryGraphics: ({ size, color, width, height, ...rest }: CompletedBerryGraphicsProps) => React.JSX.Element;
|
|
178
|
+
export interface FinanceBerryGraphicProps extends React.SVGProps<SVGSVGElement> {
|
|
179
179
|
size?: number | string;
|
|
180
180
|
color?: string;
|
|
181
181
|
width?: number | string;
|
|
182
182
|
height?: number | string;
|
|
183
183
|
}
|
|
184
|
-
export declare const
|
|
185
|
-
export interface
|
|
184
|
+
export declare const FinanceBerryGraphic: ({ size, color, width, height, ...rest }: FinanceBerryGraphicProps) => React.JSX.Element;
|
|
185
|
+
export interface CommunicationIconProps extends React.SVGProps<SVGSVGElement> {
|
|
186
186
|
size?: number | string;
|
|
187
187
|
color?: string;
|
|
188
188
|
width?: number | string;
|
|
189
189
|
height?: number | string;
|
|
190
190
|
}
|
|
191
|
-
export declare const
|
|
192
|
-
export interface
|
|
191
|
+
export declare const CommunicationIcon: ({ size, color, width, height, ...rest }: CommunicationIconProps) => React.JSX.Element;
|
|
192
|
+
export interface SMSIconProps extends React.SVGProps<SVGSVGElement> {
|
|
193
193
|
size?: number | string;
|
|
194
194
|
color?: string;
|
|
195
195
|
width?: number | string;
|
|
196
196
|
height?: number | string;
|
|
197
197
|
}
|
|
198
|
-
export declare const
|
|
199
|
-
export interface
|
|
198
|
+
export declare const SMSIcon: ({ size, color, width, height, ...rest }: SMSIconProps) => React.JSX.Element;
|
|
199
|
+
export interface UploadRoundedIcon300Props extends React.SVGProps<SVGSVGElement> {
|
|
200
200
|
size?: number | string;
|
|
201
201
|
color?: string;
|
|
202
202
|
width?: number | string;
|
|
203
203
|
height?: number | string;
|
|
204
204
|
}
|
|
205
|
-
export declare const
|
|
206
|
-
export interface
|
|
205
|
+
export declare const UploadRoundedIcon300: ({ size, color, width, height, ...rest }: UploadRoundedIcon300Props) => React.JSX.Element;
|
|
206
|
+
export interface AddRoundedIconProps extends React.SVGProps<SVGSVGElement> {
|
|
207
207
|
size?: number | string;
|
|
208
208
|
color?: string;
|
|
209
209
|
width?: number | string;
|
|
210
210
|
height?: number | string;
|
|
211
211
|
}
|
|
212
|
-
export declare const
|
|
213
|
-
export interface
|
|
212
|
+
export declare const AddRoundedIcon: ({ size, color, width, height, ...rest }: AddRoundedIconProps) => React.JSX.Element;
|
|
213
|
+
export interface CasePresentationIconProps extends React.SVGProps<SVGSVGElement> {
|
|
214
214
|
size?: number | string;
|
|
215
215
|
color?: string;
|
|
216
216
|
width?: number | string;
|
|
217
217
|
height?: number | string;
|
|
218
218
|
}
|
|
219
|
-
export declare const
|
|
220
|
-
export interface
|
|
219
|
+
export declare const CasePresentationIcon: ({ size, color, width, height, ...rest }: CasePresentationIconProps) => React.JSX.Element;
|
|
220
|
+
export interface ChevronLeftRoundedIconProps extends React.SVGProps<SVGSVGElement> {
|
|
221
221
|
size?: number | string;
|
|
222
222
|
color?: string;
|
|
223
223
|
width?: number | string;
|
|
224
224
|
height?: number | string;
|
|
225
225
|
}
|
|
226
|
-
export declare const
|
|
227
|
-
export interface
|
|
226
|
+
export declare const ChevronLeftRoundedIcon: ({ size, color, width, height, ...rest }: ChevronLeftRoundedIconProps) => React.JSX.Element;
|
|
227
|
+
export interface DragIndicatorIconProps extends React.SVGProps<SVGSVGElement> {
|
|
228
228
|
size?: number | string;
|
|
229
229
|
color?: string;
|
|
230
230
|
width?: number | string;
|
|
231
231
|
height?: number | string;
|
|
232
232
|
}
|
|
233
|
-
export declare const
|
|
234
|
-
export interface
|
|
233
|
+
export declare const DragIndicatorIcon: ({ size, color, width, height, ...rest }: DragIndicatorIconProps) => React.JSX.Element;
|
|
234
|
+
export interface ExcitedBerryGraphicProps extends React.SVGProps<SVGSVGElement> {
|
|
235
235
|
size?: number | string;
|
|
236
236
|
color?: string;
|
|
237
237
|
width?: number | string;
|
|
238
238
|
height?: number | string;
|
|
239
239
|
}
|
|
240
|
-
export declare const
|
|
241
|
-
export interface
|
|
240
|
+
export declare const ExcitedBerryGraphic: ({ size, color, width, height, ...rest }: ExcitedBerryGraphicProps) => React.JSX.Element;
|
|
241
|
+
export interface HourGlassIconProps extends React.SVGProps<SVGSVGElement> {
|
|
242
242
|
size?: number | string;
|
|
243
243
|
color?: string;
|
|
244
244
|
width?: number | string;
|
|
245
245
|
height?: number | string;
|
|
246
246
|
}
|
|
247
|
-
export declare const
|
|
248
|
-
export interface
|
|
247
|
+
export declare const HourGlassIcon: ({ size, color, width, height, ...rest }: HourGlassIconProps) => React.JSX.Element;
|
|
248
|
+
export interface CloseIconProps extends React.SVGProps<SVGSVGElement> {
|
|
249
249
|
size?: number | string;
|
|
250
250
|
color?: string;
|
|
251
251
|
width?: number | string;
|
|
252
252
|
height?: number | string;
|
|
253
253
|
}
|
|
254
|
-
export declare const
|
|
255
|
-
export interface
|
|
254
|
+
export declare const CloseIcon: ({ size, color, width, height, ...rest }: CloseIconProps) => React.JSX.Element;
|
|
255
|
+
export interface DefenceBerryGraphicProps extends React.SVGProps<SVGSVGElement> {
|
|
256
256
|
size?: number | string;
|
|
257
257
|
color?: string;
|
|
258
258
|
width?: number | string;
|
|
259
259
|
height?: number | string;
|
|
260
260
|
}
|
|
261
|
-
export declare const
|
|
262
|
-
export interface
|
|
261
|
+
export declare const DefenceBerryGraphic: ({ size, color, width, height, ...rest }: DefenceBerryGraphicProps) => React.JSX.Element;
|
|
262
|
+
export interface InsuranceIconProps extends React.SVGProps<SVGSVGElement> {
|
|
263
263
|
size?: number | string;
|
|
264
264
|
color?: string;
|
|
265
265
|
width?: number | string;
|
|
266
266
|
height?: number | string;
|
|
267
267
|
}
|
|
268
|
-
export declare const
|
|
269
|
-
export interface
|
|
268
|
+
export declare const InsuranceIcon: ({ size, color, width, height, ...rest }: InsuranceIconProps) => React.JSX.Element;
|
|
269
|
+
export interface CheckCircleIconProps extends React.SVGProps<SVGSVGElement> {
|
|
270
270
|
size?: number | string;
|
|
271
271
|
color?: string;
|
|
272
272
|
width?: number | string;
|
|
273
273
|
height?: number | string;
|
|
274
274
|
}
|
|
275
|
-
export declare const
|
|
276
|
-
export interface
|
|
275
|
+
export declare const CheckCircleIcon: ({ size, color, width, height, ...rest }: CheckCircleIconProps) => React.JSX.Element;
|
|
276
|
+
export interface ReviewBerryGraphicProps extends React.SVGProps<SVGSVGElement> {
|
|
277
277
|
size?: number | string;
|
|
278
278
|
color?: string;
|
|
279
279
|
width?: number | string;
|
|
280
280
|
height?: number | string;
|
|
281
281
|
}
|
|
282
|
-
export declare const
|
|
283
|
-
export interface
|
|
282
|
+
export declare const ReviewBerryGraphic: ({ size, color, width, height, ...rest }: ReviewBerryGraphicProps) => React.JSX.Element;
|
|
283
|
+
export interface FlyBerryGraphicsProps extends React.SVGProps<SVGSVGElement> {
|
|
284
284
|
size?: number | string;
|
|
285
285
|
color?: string;
|
|
286
286
|
width?: number | string;
|
|
287
287
|
height?: number | string;
|
|
288
288
|
}
|
|
289
|
-
export declare const
|
|
289
|
+
export declare const FlyBerryGraphics: ({ size, color, width, height, ...rest }: FlyBerryGraphicsProps) => React.JSX.Element;
|
|
290
290
|
export interface FormsIconProps extends React.SVGProps<SVGSVGElement> {
|
|
291
291
|
size?: number | string;
|
|
292
292
|
color?: string;
|
|
@@ -294,90 +294,90 @@ export interface FormsIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
294
294
|
height?: number | string;
|
|
295
295
|
}
|
|
296
296
|
export declare const FormsIcon: ({ size, color, width, height, ...rest }: FormsIconProps) => React.JSX.Element;
|
|
297
|
-
export interface
|
|
297
|
+
export interface AddIconProps extends React.SVGProps<SVGSVGElement> {
|
|
298
298
|
size?: number | string;
|
|
299
299
|
color?: string;
|
|
300
300
|
width?: number | string;
|
|
301
301
|
height?: number | string;
|
|
302
302
|
}
|
|
303
|
-
export declare const
|
|
304
|
-
export interface
|
|
303
|
+
export declare const AddIcon: ({ size, color, width, height, ...rest }: AddIconProps) => React.JSX.Element;
|
|
304
|
+
export interface ArchiveIconProps extends React.SVGProps<SVGSVGElement> {
|
|
305
305
|
size?: number | string;
|
|
306
306
|
color?: string;
|
|
307
307
|
width?: number | string;
|
|
308
308
|
height?: number | string;
|
|
309
309
|
}
|
|
310
|
-
export declare const
|
|
311
|
-
export interface
|
|
310
|
+
export declare const ArchiveIcon: ({ size, color, width, height, ...rest }: ArchiveIconProps) => React.JSX.Element;
|
|
311
|
+
export interface CircleXFilledIconProps extends React.SVGProps<SVGSVGElement> {
|
|
312
312
|
size?: number | string;
|
|
313
313
|
color?: string;
|
|
314
314
|
width?: number | string;
|
|
315
315
|
height?: number | string;
|
|
316
316
|
}
|
|
317
|
-
export declare const
|
|
318
|
-
export interface
|
|
317
|
+
export declare const CircleXFilledIcon: ({ size, color, width, height, ...rest }: CircleXFilledIconProps) => React.JSX.Element;
|
|
318
|
+
export interface BalloonBerryGraphicProps extends React.SVGProps<SVGSVGElement> {
|
|
319
319
|
size?: number | string;
|
|
320
320
|
color?: string;
|
|
321
321
|
width?: number | string;
|
|
322
322
|
height?: number | string;
|
|
323
323
|
}
|
|
324
|
-
export declare const
|
|
325
|
-
export interface
|
|
324
|
+
export declare const BalloonBerryGraphic: ({ size, color, width, height, ...rest }: BalloonBerryGraphicProps) => React.JSX.Element;
|
|
325
|
+
export interface ExternalLinkIconProps extends React.SVGProps<SVGSVGElement> {
|
|
326
326
|
size?: number | string;
|
|
327
327
|
color?: string;
|
|
328
328
|
width?: number | string;
|
|
329
329
|
height?: number | string;
|
|
330
330
|
}
|
|
331
|
-
export declare const
|
|
332
|
-
export interface
|
|
331
|
+
export declare const ExternalLinkIcon: ({ size, color, width, height, ...rest }: ExternalLinkIconProps) => React.JSX.Element;
|
|
332
|
+
export interface CalendarIconProps extends React.SVGProps<SVGSVGElement> {
|
|
333
333
|
size?: number | string;
|
|
334
334
|
color?: string;
|
|
335
335
|
width?: number | string;
|
|
336
336
|
height?: number | string;
|
|
337
337
|
}
|
|
338
|
-
export declare const
|
|
339
|
-
export interface
|
|
338
|
+
export declare const CalendarIcon: ({ size, color, width, height, ...rest }: CalendarIconProps) => React.JSX.Element;
|
|
339
|
+
export interface CircleXRoundedIconProps extends React.SVGProps<SVGSVGElement> {
|
|
340
340
|
size?: number | string;
|
|
341
341
|
color?: string;
|
|
342
342
|
width?: number | string;
|
|
343
343
|
height?: number | string;
|
|
344
344
|
}
|
|
345
|
-
export declare const
|
|
346
|
-
export interface
|
|
345
|
+
export declare const CircleXRoundedIcon: ({ size, color, width, height, ...rest }: CircleXRoundedIconProps) => React.JSX.Element;
|
|
346
|
+
export interface CheckCircleFilledIconProps extends React.SVGProps<SVGSVGElement> {
|
|
347
347
|
size?: number | string;
|
|
348
348
|
color?: string;
|
|
349
349
|
width?: number | string;
|
|
350
350
|
height?: number | string;
|
|
351
351
|
}
|
|
352
|
-
export declare const
|
|
353
|
-
export interface
|
|
352
|
+
export declare const CheckCircleFilledIcon: ({ size, color, width, height, ...rest }: CheckCircleFilledIconProps) => React.JSX.Element;
|
|
353
|
+
export interface ClouduploadIconProps extends React.SVGProps<SVGSVGElement> {
|
|
354
354
|
size?: number | string;
|
|
355
355
|
color?: string;
|
|
356
356
|
width?: number | string;
|
|
357
357
|
height?: number | string;
|
|
358
358
|
}
|
|
359
|
-
export declare const
|
|
360
|
-
export interface
|
|
359
|
+
export declare const ClouduploadIcon: ({ size, color, width, height, ...rest }: ClouduploadIconProps) => React.JSX.Element;
|
|
360
|
+
export interface ChevronRightIconProps extends React.SVGProps<SVGSVGElement> {
|
|
361
361
|
size?: number | string;
|
|
362
362
|
color?: string;
|
|
363
363
|
width?: number | string;
|
|
364
364
|
height?: number | string;
|
|
365
365
|
}
|
|
366
|
-
export declare const
|
|
367
|
-
export interface
|
|
366
|
+
export declare const ChevronRightIcon: ({ size, color, width, height, ...rest }: ChevronRightIconProps) => React.JSX.Element;
|
|
367
|
+
export interface ChevronRightRoundedIconProps extends React.SVGProps<SVGSVGElement> {
|
|
368
368
|
size?: number | string;
|
|
369
369
|
color?: string;
|
|
370
370
|
width?: number | string;
|
|
371
371
|
height?: number | string;
|
|
372
372
|
}
|
|
373
|
-
export declare const
|
|
374
|
-
export interface
|
|
373
|
+
export declare const ChevronRightRoundedIcon: ({ size, color, width, height, ...rest }: ChevronRightRoundedIconProps) => React.JSX.Element;
|
|
374
|
+
export interface ChevronLeftIconProps extends React.SVGProps<SVGSVGElement> {
|
|
375
375
|
size?: number | string;
|
|
376
376
|
color?: string;
|
|
377
377
|
width?: number | string;
|
|
378
378
|
height?: number | string;
|
|
379
379
|
}
|
|
380
|
-
export declare const
|
|
380
|
+
export declare const ChevronLeftIcon: ({ size, color, width, height, ...rest }: ChevronLeftIconProps) => React.JSX.Element;
|
|
381
381
|
export interface LetterIconProps extends React.SVGProps<SVGSVGElement> {
|
|
382
382
|
size?: number | string;
|
|
383
383
|
color?: string;
|
|
@@ -385,20 +385,20 @@ export interface LetterIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
385
385
|
height?: number | string;
|
|
386
386
|
}
|
|
387
387
|
export declare const LetterIcon: ({ size, color, width, height, ...rest }: LetterIconProps) => React.JSX.Element;
|
|
388
|
-
export interface
|
|
388
|
+
export interface MenuIconProps extends React.SVGProps<SVGSVGElement> {
|
|
389
389
|
size?: number | string;
|
|
390
390
|
color?: string;
|
|
391
391
|
width?: number | string;
|
|
392
392
|
height?: number | string;
|
|
393
393
|
}
|
|
394
|
-
export declare const
|
|
395
|
-
export interface
|
|
394
|
+
export declare const MenuIcon: ({ size, color, width, height, ...rest }: MenuIconProps) => React.JSX.Element;
|
|
395
|
+
export interface GlobeIconProps extends React.SVGProps<SVGSVGElement> {
|
|
396
396
|
size?: number | string;
|
|
397
397
|
color?: string;
|
|
398
398
|
width?: number | string;
|
|
399
399
|
height?: number | string;
|
|
400
400
|
}
|
|
401
|
-
export declare const
|
|
401
|
+
export declare const GlobeIcon: ({ size, color, width, height, ...rest }: GlobeIconProps) => React.JSX.Element;
|
|
402
402
|
export interface WhatsappIconProps extends React.SVGProps<SVGSVGElement> {
|
|
403
403
|
size?: number | string;
|
|
404
404
|
color?: string;
|
|
@@ -406,48 +406,48 @@ export interface WhatsappIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
406
406
|
height?: number | string;
|
|
407
407
|
}
|
|
408
408
|
export declare const WhatsappIcon: ({ size, color, width, height, ...rest }: WhatsappIconProps) => React.JSX.Element;
|
|
409
|
-
export interface
|
|
409
|
+
export interface ThumbsUpBerryGraphicProps extends React.SVGProps<SVGSVGElement> {
|
|
410
410
|
size?: number | string;
|
|
411
411
|
color?: string;
|
|
412
412
|
width?: number | string;
|
|
413
413
|
height?: number | string;
|
|
414
414
|
}
|
|
415
|
-
export declare const
|
|
416
|
-
export interface
|
|
415
|
+
export declare const ThumbsUpBerryGraphic: ({ size, color, width, height, ...rest }: ThumbsUpBerryGraphicProps) => React.JSX.Element;
|
|
416
|
+
export interface TreatmentPlanIconProps extends React.SVGProps<SVGSVGElement> {
|
|
417
417
|
size?: number | string;
|
|
418
418
|
color?: string;
|
|
419
419
|
width?: number | string;
|
|
420
420
|
height?: number | string;
|
|
421
421
|
}
|
|
422
|
-
export declare const
|
|
423
|
-
export interface
|
|
422
|
+
export declare const TreatmentPlanIcon: ({ size, color, width, height, ...rest }: TreatmentPlanIconProps) => React.JSX.Element;
|
|
423
|
+
export interface ChevronRightIcon400Props extends React.SVGProps<SVGSVGElement> {
|
|
424
424
|
size?: number | string;
|
|
425
425
|
color?: string;
|
|
426
426
|
width?: number | string;
|
|
427
427
|
height?: number | string;
|
|
428
428
|
}
|
|
429
|
-
export declare const
|
|
430
|
-
export interface
|
|
429
|
+
export declare const ChevronRightIcon400: ({ size, color, width, height, ...rest }: ChevronRightIcon400Props) => React.JSX.Element;
|
|
430
|
+
export interface UnArchiveIconProps extends React.SVGProps<SVGSVGElement> {
|
|
431
431
|
size?: number | string;
|
|
432
432
|
color?: string;
|
|
433
433
|
width?: number | string;
|
|
434
434
|
height?: number | string;
|
|
435
435
|
}
|
|
436
|
-
export declare const
|
|
437
|
-
export interface
|
|
436
|
+
export declare const UnArchiveIcon: ({ size, color, width, height, ...rest }: UnArchiveIconProps) => React.JSX.Element;
|
|
437
|
+
export interface CopyIconProps extends React.SVGProps<SVGSVGElement> {
|
|
438
438
|
size?: number | string;
|
|
439
439
|
color?: string;
|
|
440
440
|
width?: number | string;
|
|
441
441
|
height?: number | string;
|
|
442
442
|
}
|
|
443
|
-
export declare const
|
|
444
|
-
export interface
|
|
443
|
+
export declare const CopyIcon: ({ size, color, width, height, ...rest }: CopyIconProps) => React.JSX.Element;
|
|
444
|
+
export interface CallIconProps extends React.SVGProps<SVGSVGElement> {
|
|
445
445
|
size?: number | string;
|
|
446
446
|
color?: string;
|
|
447
447
|
width?: number | string;
|
|
448
448
|
height?: number | string;
|
|
449
449
|
}
|
|
450
|
-
export declare const
|
|
450
|
+
export declare const CallIcon: ({ size, color, width, height, ...rest }: CallIconProps) => React.JSX.Element;
|
|
451
451
|
export interface VisibilityIconProps extends React.SVGProps<SVGSVGElement> {
|
|
452
452
|
size?: number | string;
|
|
453
453
|
color?: string;
|
|
@@ -455,34 +455,41 @@ export interface VisibilityIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
455
455
|
height?: number | string;
|
|
456
456
|
}
|
|
457
457
|
export declare const VisibilityIcon: ({ size, color, width, height, ...rest }: VisibilityIconProps) => React.JSX.Element;
|
|
458
|
-
export interface
|
|
458
|
+
export interface PersonIconProps extends React.SVGProps<SVGSVGElement> {
|
|
459
459
|
size?: number | string;
|
|
460
460
|
color?: string;
|
|
461
461
|
width?: number | string;
|
|
462
462
|
height?: number | string;
|
|
463
463
|
}
|
|
464
|
-
export declare const
|
|
465
|
-
export interface
|
|
464
|
+
export declare const PersonIcon: ({ size, color, width, height, ...rest }: PersonIconProps) => React.JSX.Element;
|
|
465
|
+
export interface MinusRoundedIconProps extends React.SVGProps<SVGSVGElement> {
|
|
466
466
|
size?: number | string;
|
|
467
467
|
color?: string;
|
|
468
468
|
width?: number | string;
|
|
469
469
|
height?: number | string;
|
|
470
470
|
}
|
|
471
|
-
export declare const
|
|
472
|
-
export interface
|
|
471
|
+
export declare const MinusRoundedIcon: ({ size, color, width, height, ...rest }: MinusRoundedIconProps) => React.JSX.Element;
|
|
472
|
+
export interface BerryPayRoundedIcon200Props extends React.SVGProps<SVGSVGElement> {
|
|
473
473
|
size?: number | string;
|
|
474
474
|
color?: string;
|
|
475
475
|
width?: number | string;
|
|
476
476
|
height?: number | string;
|
|
477
477
|
}
|
|
478
|
-
export declare const
|
|
479
|
-
export interface
|
|
478
|
+
export declare const BerryPayRoundedIcon200: ({ size, color, width, height, ...rest }: BerryPayRoundedIcon200Props) => React.JSX.Element;
|
|
479
|
+
export interface DeactivateIconProps extends React.SVGProps<SVGSVGElement> {
|
|
480
480
|
size?: number | string;
|
|
481
481
|
color?: string;
|
|
482
482
|
width?: number | string;
|
|
483
483
|
height?: number | string;
|
|
484
484
|
}
|
|
485
|
-
export declare const
|
|
485
|
+
export declare const DeactivateIcon: ({ size, color, width, height, ...rest }: DeactivateIconProps) => React.JSX.Element;
|
|
486
|
+
export interface EditSquareIconProps extends React.SVGProps<SVGSVGElement> {
|
|
487
|
+
size?: number | string;
|
|
488
|
+
color?: string;
|
|
489
|
+
width?: number | string;
|
|
490
|
+
height?: number | string;
|
|
491
|
+
}
|
|
492
|
+
export declare const EditSquareIcon: ({ size, color, width, height, ...rest }: EditSquareIconProps) => React.JSX.Element;
|
|
486
493
|
export interface WaveBerryGraphicProps extends React.SVGProps<SVGSVGElement> {
|
|
487
494
|
size?: number | string;
|
|
488
495
|
color?: string;
|
|
@@ -490,17 +497,17 @@ export interface WaveBerryGraphicProps extends React.SVGProps<SVGSVGElement> {
|
|
|
490
497
|
height?: number | string;
|
|
491
498
|
}
|
|
492
499
|
export declare const WaveBerryGraphic: ({ size, color, width, height, ...rest }: WaveBerryGraphicProps) => React.JSX.Element;
|
|
493
|
-
export interface
|
|
500
|
+
export interface FinancingIconProps extends React.SVGProps<SVGSVGElement> {
|
|
494
501
|
size?: number | string;
|
|
495
502
|
color?: string;
|
|
496
503
|
width?: number | string;
|
|
497
504
|
height?: number | string;
|
|
498
505
|
}
|
|
499
|
-
export declare const
|
|
500
|
-
export interface
|
|
506
|
+
export declare const FinancingIcon: ({ size, color, width, height, ...rest }: FinancingIconProps) => React.JSX.Element;
|
|
507
|
+
export interface ExpandArrowIconProps extends React.SVGProps<SVGSVGElement> {
|
|
501
508
|
size?: number | string;
|
|
502
509
|
color?: string;
|
|
503
510
|
width?: number | string;
|
|
504
511
|
height?: number | string;
|
|
505
512
|
}
|
|
506
|
-
export declare const
|
|
513
|
+
export declare const ExpandArrowIcon: ({ size, color, width, height, ...rest }: ExpandArrowIconProps) => React.JSX.Element;
|