@deepanmano/berry-icon-library 1.0.36 → 1.0.38
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 +286 -162
- package/dist/index.js +1311 -787
- package/dist/index.js.map +60 -58
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,277 +1,401 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
|
|
3
|
-
export interface
|
|
4
|
-
size?: number;
|
|
3
|
+
export interface PracticeIconProps extends React.SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
5
|
color?: string;
|
|
6
|
+
width?: number | string;
|
|
7
|
+
height?: number | string;
|
|
6
8
|
}
|
|
7
|
-
export declare const
|
|
8
|
-
export interface
|
|
9
|
-
size?: number;
|
|
9
|
+
export declare const PracticeIcon: ({ size, color, width, height, ...rest }: PracticeIconProps) => React.JSX.Element;
|
|
10
|
+
export interface AddRoundedIconProps extends React.SVGProps<SVGSVGElement> {
|
|
11
|
+
size?: number | string;
|
|
10
12
|
color?: string;
|
|
13
|
+
width?: number | string;
|
|
14
|
+
height?: number | string;
|
|
11
15
|
}
|
|
12
|
-
export declare const
|
|
13
|
-
export interface
|
|
14
|
-
size?: number;
|
|
16
|
+
export declare const AddRoundedIcon: ({ size, color, width, height, ...rest }: AddRoundedIconProps) => React.JSX.Element;
|
|
17
|
+
export interface CreditCardIconProps extends React.SVGProps<SVGSVGElement> {
|
|
18
|
+
size?: number | string;
|
|
15
19
|
color?: string;
|
|
20
|
+
width?: number | string;
|
|
21
|
+
height?: number | string;
|
|
16
22
|
}
|
|
17
|
-
export declare const
|
|
18
|
-
export interface
|
|
19
|
-
size?: number;
|
|
23
|
+
export declare const CreditCardIcon: ({ size, color, width, height, ...rest }: CreditCardIconProps) => React.JSX.Element;
|
|
24
|
+
export interface BerryFormsRoundedIcon200Props extends React.SVGProps<SVGSVGElement> {
|
|
25
|
+
size?: number | string;
|
|
20
26
|
color?: string;
|
|
27
|
+
width?: number | string;
|
|
28
|
+
height?: number | string;
|
|
21
29
|
}
|
|
22
|
-
export declare const
|
|
23
|
-
export interface
|
|
24
|
-
size?: number;
|
|
30
|
+
export declare const BerryFormsRoundedIcon200: ({ size, color, width, height, ...rest }: BerryFormsRoundedIcon200Props) => React.JSX.Element;
|
|
31
|
+
export interface ExpandArrowIconProps extends React.SVGProps<SVGSVGElement> {
|
|
32
|
+
size?: number | string;
|
|
25
33
|
color?: string;
|
|
34
|
+
width?: number | string;
|
|
35
|
+
height?: number | string;
|
|
26
36
|
}
|
|
27
|
-
export declare const
|
|
28
|
-
export interface
|
|
29
|
-
size?: number;
|
|
37
|
+
export declare const ExpandArrowIcon: ({ size, color, width, height, ...rest }: ExpandArrowIconProps) => React.JSX.Element;
|
|
38
|
+
export interface SearchIconProps extends React.SVGProps<SVGSVGElement> {
|
|
39
|
+
size?: number | string;
|
|
30
40
|
color?: string;
|
|
41
|
+
width?: number | string;
|
|
42
|
+
height?: number | string;
|
|
31
43
|
}
|
|
32
|
-
export declare const
|
|
33
|
-
export interface
|
|
34
|
-
size?: number;
|
|
44
|
+
export declare const SearchIcon: ({ size, color, width, height, ...rest }: SearchIconProps) => React.JSX.Element;
|
|
45
|
+
export interface ChevronLeftRoundedIconProps extends React.SVGProps<SVGSVGElement> {
|
|
46
|
+
size?: number | string;
|
|
35
47
|
color?: string;
|
|
48
|
+
width?: number | string;
|
|
49
|
+
height?: number | string;
|
|
36
50
|
}
|
|
37
|
-
export declare const
|
|
38
|
-
export interface
|
|
39
|
-
size?: number;
|
|
51
|
+
export declare const ChevronLeftRoundedIcon: ({ size, color, width, height, ...rest }: ChevronLeftRoundedIconProps) => React.JSX.Element;
|
|
52
|
+
export interface CopyIconProps extends React.SVGProps<SVGSVGElement> {
|
|
53
|
+
size?: number | string;
|
|
40
54
|
color?: string;
|
|
55
|
+
width?: number | string;
|
|
56
|
+
height?: number | string;
|
|
41
57
|
}
|
|
42
|
-
export declare const
|
|
43
|
-
export interface
|
|
44
|
-
size?: number;
|
|
58
|
+
export declare const CopyIcon: ({ size, color, width, height, ...rest }: CopyIconProps) => React.JSX.Element;
|
|
59
|
+
export interface MoreVerticalIconProps extends React.SVGProps<SVGSVGElement> {
|
|
60
|
+
size?: number | string;
|
|
45
61
|
color?: string;
|
|
62
|
+
width?: number | string;
|
|
63
|
+
height?: number | string;
|
|
46
64
|
}
|
|
47
|
-
export declare const
|
|
48
|
-
export interface
|
|
49
|
-
size?: number;
|
|
65
|
+
export declare const MoreVerticalIcon: ({ size, color, width, height, ...rest }: MoreVerticalIconProps) => React.JSX.Element;
|
|
66
|
+
export interface InfoIconProps extends React.SVGProps<SVGSVGElement> {
|
|
67
|
+
size?: number | string;
|
|
50
68
|
color?: string;
|
|
69
|
+
width?: number | string;
|
|
70
|
+
height?: number | string;
|
|
51
71
|
}
|
|
52
|
-
export declare const
|
|
53
|
-
export interface
|
|
54
|
-
size?: number;
|
|
72
|
+
export declare const InfoIcon: ({ size, color, width, height, ...rest }: InfoIconProps) => React.JSX.Element;
|
|
73
|
+
export interface CircleXRoundedIconProps extends React.SVGProps<SVGSVGElement> {
|
|
74
|
+
size?: number | string;
|
|
55
75
|
color?: string;
|
|
76
|
+
width?: number | string;
|
|
77
|
+
height?: number | string;
|
|
56
78
|
}
|
|
57
|
-
export declare const
|
|
58
|
-
export interface
|
|
59
|
-
size?: number;
|
|
79
|
+
export declare const CircleXRoundedIcon: ({ size, color, width, height, ...rest }: CircleXRoundedIconProps) => React.JSX.Element;
|
|
80
|
+
export interface BerryReportsRoundedIcon200Props extends React.SVGProps<SVGSVGElement> {
|
|
81
|
+
size?: number | string;
|
|
60
82
|
color?: string;
|
|
83
|
+
width?: number | string;
|
|
84
|
+
height?: number | string;
|
|
61
85
|
}
|
|
62
|
-
export declare const
|
|
63
|
-
export interface
|
|
64
|
-
size?: number;
|
|
86
|
+
export declare const BerryReportsRoundedIcon200: ({ size, color, width, height, ...rest }: BerryReportsRoundedIcon200Props) => React.JSX.Element;
|
|
87
|
+
export interface LockIconProps extends React.SVGProps<SVGSVGElement> {
|
|
88
|
+
size?: number | string;
|
|
65
89
|
color?: string;
|
|
90
|
+
width?: number | string;
|
|
91
|
+
height?: number | string;
|
|
66
92
|
}
|
|
67
|
-
export declare const
|
|
68
|
-
export interface
|
|
69
|
-
size?: number;
|
|
93
|
+
export declare const LockIcon: ({ size, color, width, height, ...rest }: LockIconProps) => React.JSX.Element;
|
|
94
|
+
export interface TreatmentPlanIconProps extends React.SVGProps<SVGSVGElement> {
|
|
95
|
+
size?: number | string;
|
|
70
96
|
color?: string;
|
|
97
|
+
width?: number | string;
|
|
98
|
+
height?: number | string;
|
|
71
99
|
}
|
|
72
|
-
export declare const
|
|
73
|
-
export interface
|
|
74
|
-
size?: number;
|
|
100
|
+
export declare const TreatmentPlanIcon: ({ size, color, width, height, ...rest }: TreatmentPlanIconProps) => React.JSX.Element;
|
|
101
|
+
export interface ExternalLinkIconProps extends React.SVGProps<SVGSVGElement> {
|
|
102
|
+
size?: number | string;
|
|
75
103
|
color?: string;
|
|
104
|
+
width?: number | string;
|
|
105
|
+
height?: number | string;
|
|
76
106
|
}
|
|
77
|
-
export declare const
|
|
78
|
-
export interface
|
|
79
|
-
size?: number;
|
|
107
|
+
export declare const ExternalLinkIcon: ({ size, color, width, height, ...rest }: ExternalLinkIconProps) => React.JSX.Element;
|
|
108
|
+
export interface CheckCircleFilledIconProps extends React.SVGProps<SVGSVGElement> {
|
|
109
|
+
size?: number | string;
|
|
80
110
|
color?: string;
|
|
111
|
+
width?: number | string;
|
|
112
|
+
height?: number | string;
|
|
81
113
|
}
|
|
82
|
-
export declare const
|
|
83
|
-
export interface
|
|
84
|
-
size?: number;
|
|
114
|
+
export declare const CheckCircleFilledIcon: ({ size, color, width, height, ...rest }: CheckCircleFilledIconProps) => React.JSX.Element;
|
|
115
|
+
export interface SMSIconProps extends React.SVGProps<SVGSVGElement> {
|
|
116
|
+
size?: number | string;
|
|
85
117
|
color?: string;
|
|
118
|
+
width?: number | string;
|
|
119
|
+
height?: number | string;
|
|
86
120
|
}
|
|
87
|
-
export declare const
|
|
88
|
-
export interface
|
|
89
|
-
size?: number;
|
|
121
|
+
export declare const SMSIcon: ({ size, color, width, height, ...rest }: SMSIconProps) => React.JSX.Element;
|
|
122
|
+
export interface CircleXFilledIconProps extends React.SVGProps<SVGSVGElement> {
|
|
123
|
+
size?: number | string;
|
|
90
124
|
color?: string;
|
|
125
|
+
width?: number | string;
|
|
126
|
+
height?: number | string;
|
|
91
127
|
}
|
|
92
|
-
export declare const
|
|
128
|
+
export declare const CircleXFilledIcon: ({ size, color, width, height, ...rest }: CircleXFilledIconProps) => React.JSX.Element;
|
|
93
129
|
export interface GlobeIconProps extends React.SVGProps<SVGSVGElement> {
|
|
94
|
-
size?: number;
|
|
130
|
+
size?: number | string;
|
|
95
131
|
color?: string;
|
|
132
|
+
width?: number | string;
|
|
133
|
+
height?: number | string;
|
|
96
134
|
}
|
|
97
|
-
export declare const GlobeIcon: ({ size, color, ...rest }: GlobeIconProps) => React.JSX.Element;
|
|
98
|
-
export interface
|
|
99
|
-
size?: number;
|
|
135
|
+
export declare const GlobeIcon: ({ size, color, width, height, ...rest }: GlobeIconProps) => React.JSX.Element;
|
|
136
|
+
export interface HourGlassIconProps extends React.SVGProps<SVGSVGElement> {
|
|
137
|
+
size?: number | string;
|
|
100
138
|
color?: string;
|
|
139
|
+
width?: number | string;
|
|
140
|
+
height?: number | string;
|
|
101
141
|
}
|
|
102
|
-
export declare const
|
|
103
|
-
export interface
|
|
104
|
-
size?: number;
|
|
142
|
+
export declare const HourGlassIcon: ({ size, color, width, height, ...rest }: HourGlassIconProps) => React.JSX.Element;
|
|
143
|
+
export interface CallIconProps extends React.SVGProps<SVGSVGElement> {
|
|
144
|
+
size?: number | string;
|
|
105
145
|
color?: string;
|
|
146
|
+
width?: number | string;
|
|
147
|
+
height?: number | string;
|
|
106
148
|
}
|
|
107
|
-
export declare const
|
|
108
|
-
export interface
|
|
109
|
-
size?: number;
|
|
149
|
+
export declare const CallIcon: ({ size, color, width, height, ...rest }: CallIconProps) => React.JSX.Element;
|
|
150
|
+
export interface CloseIconProps extends React.SVGProps<SVGSVGElement> {
|
|
151
|
+
size?: number | string;
|
|
110
152
|
color?: string;
|
|
153
|
+
width?: number | string;
|
|
154
|
+
height?: number | string;
|
|
111
155
|
}
|
|
112
|
-
export declare const
|
|
113
|
-
export interface
|
|
114
|
-
size?: number;
|
|
156
|
+
export declare const CloseIcon: ({ size, color, width, height, ...rest }: CloseIconProps) => React.JSX.Element;
|
|
157
|
+
export interface ExpandCloseIconProps extends React.SVGProps<SVGSVGElement> {
|
|
158
|
+
size?: number | string;
|
|
115
159
|
color?: string;
|
|
160
|
+
width?: number | string;
|
|
161
|
+
height?: number | string;
|
|
116
162
|
}
|
|
117
|
-
export declare const
|
|
118
|
-
export interface
|
|
119
|
-
size?: number;
|
|
163
|
+
export declare const ExpandCloseIcon: ({ size, color, width, height, ...rest }: ExpandCloseIconProps) => React.JSX.Element;
|
|
164
|
+
export interface MobileIconProps extends React.SVGProps<SVGSVGElement> {
|
|
165
|
+
size?: number | string;
|
|
120
166
|
color?: string;
|
|
167
|
+
width?: number | string;
|
|
168
|
+
height?: number | string;
|
|
121
169
|
}
|
|
122
|
-
export declare const
|
|
123
|
-
export interface
|
|
124
|
-
size?: number;
|
|
170
|
+
export declare const MobileIcon: ({ size, color, width, height, ...rest }: MobileIconProps) => React.JSX.Element;
|
|
171
|
+
export interface DeactivateIconProps extends React.SVGProps<SVGSVGElement> {
|
|
172
|
+
size?: number | string;
|
|
125
173
|
color?: string;
|
|
174
|
+
width?: number | string;
|
|
175
|
+
height?: number | string;
|
|
126
176
|
}
|
|
127
|
-
export declare const
|
|
128
|
-
export interface
|
|
129
|
-
size?: number;
|
|
177
|
+
export declare const DeactivateIcon: ({ size, color, width, height, ...rest }: DeactivateIconProps) => React.JSX.Element;
|
|
178
|
+
export interface PersonIconProps extends React.SVGProps<SVGSVGElement> {
|
|
179
|
+
size?: number | string;
|
|
130
180
|
color?: string;
|
|
181
|
+
width?: number | string;
|
|
182
|
+
height?: number | string;
|
|
131
183
|
}
|
|
132
|
-
export declare const
|
|
133
|
-
export interface
|
|
134
|
-
size?: number;
|
|
184
|
+
export declare const PersonIcon: ({ size, color, width, height, ...rest }: PersonIconProps) => React.JSX.Element;
|
|
185
|
+
export interface DeleteIconProps extends React.SVGProps<SVGSVGElement> {
|
|
186
|
+
size?: number | string;
|
|
135
187
|
color?: string;
|
|
188
|
+
width?: number | string;
|
|
189
|
+
height?: number | string;
|
|
136
190
|
}
|
|
137
|
-
export declare const
|
|
138
|
-
export interface
|
|
139
|
-
size?: number;
|
|
191
|
+
export declare const DeleteIcon: ({ size, color, width, height, ...rest }: DeleteIconProps) => React.JSX.Element;
|
|
192
|
+
export interface CasePresentationIconProps extends React.SVGProps<SVGSVGElement> {
|
|
193
|
+
size?: number | string;
|
|
140
194
|
color?: string;
|
|
195
|
+
width?: number | string;
|
|
196
|
+
height?: number | string;
|
|
141
197
|
}
|
|
142
|
-
export declare const
|
|
143
|
-
export interface
|
|
144
|
-
size?: number;
|
|
198
|
+
export declare const CasePresentationIcon: ({ size, color, width, height, ...rest }: CasePresentationIconProps) => React.JSX.Element;
|
|
199
|
+
export interface ChevronRightIconProps extends React.SVGProps<SVGSVGElement> {
|
|
200
|
+
size?: number | string;
|
|
145
201
|
color?: string;
|
|
202
|
+
width?: number | string;
|
|
203
|
+
height?: number | string;
|
|
146
204
|
}
|
|
147
|
-
export declare const
|
|
205
|
+
export declare const ChevronRightIcon: ({ size, color, width, height, ...rest }: ChevronRightIconProps) => React.JSX.Element;
|
|
206
|
+
export interface LocationIconProps extends React.SVGProps<SVGSVGElement> {
|
|
207
|
+
size?: number | string;
|
|
208
|
+
color?: string;
|
|
209
|
+
width?: number | string;
|
|
210
|
+
height?: number | string;
|
|
211
|
+
}
|
|
212
|
+
export declare const LocationIcon: ({ size, color, width, height, ...rest }: LocationIconProps) => React.JSX.Element;
|
|
148
213
|
export interface CommunicationIconProps extends React.SVGProps<SVGSVGElement> {
|
|
149
|
-
size?: number;
|
|
214
|
+
size?: number | string;
|
|
150
215
|
color?: string;
|
|
216
|
+
width?: number | string;
|
|
217
|
+
height?: number | string;
|
|
151
218
|
}
|
|
152
|
-
export declare const CommunicationIcon: ({ size, color, ...rest }: CommunicationIconProps) => React.JSX.Element;
|
|
153
|
-
export interface
|
|
154
|
-
size?: number;
|
|
219
|
+
export declare const CommunicationIcon: ({ size, color, width, height, ...rest }: CommunicationIconProps) => React.JSX.Element;
|
|
220
|
+
export interface FinancingIconProps extends React.SVGProps<SVGSVGElement> {
|
|
221
|
+
size?: number | string;
|
|
155
222
|
color?: string;
|
|
223
|
+
width?: number | string;
|
|
224
|
+
height?: number | string;
|
|
156
225
|
}
|
|
157
|
-
export declare const
|
|
158
|
-
export interface
|
|
159
|
-
size?: number;
|
|
226
|
+
export declare const FinancingIcon: ({ size, color, width, height, ...rest }: FinancingIconProps) => React.JSX.Element;
|
|
227
|
+
export interface FormsIconProps extends React.SVGProps<SVGSVGElement> {
|
|
228
|
+
size?: number | string;
|
|
160
229
|
color?: string;
|
|
230
|
+
width?: number | string;
|
|
231
|
+
height?: number | string;
|
|
161
232
|
}
|
|
162
|
-
export declare const
|
|
163
|
-
export interface
|
|
164
|
-
size?: number;
|
|
233
|
+
export declare const FormsIcon: ({ size, color, width, height, ...rest }: FormsIconProps) => React.JSX.Element;
|
|
234
|
+
export interface CalendarIconProps extends React.SVGProps<SVGSVGElement> {
|
|
235
|
+
size?: number | string;
|
|
165
236
|
color?: string;
|
|
237
|
+
width?: number | string;
|
|
238
|
+
height?: number | string;
|
|
166
239
|
}
|
|
167
|
-
export declare const
|
|
168
|
-
export interface
|
|
169
|
-
size?: number;
|
|
240
|
+
export declare const CalendarIcon: ({ size, color, width, height, ...rest }: CalendarIconProps) => React.JSX.Element;
|
|
241
|
+
export interface ClouduploadIconProps extends React.SVGProps<SVGSVGElement> {
|
|
242
|
+
size?: number | string;
|
|
170
243
|
color?: string;
|
|
244
|
+
width?: number | string;
|
|
245
|
+
height?: number | string;
|
|
171
246
|
}
|
|
172
|
-
export declare const
|
|
173
|
-
export interface
|
|
174
|
-
size?: number;
|
|
247
|
+
export declare const ClouduploadIcon: ({ size, color, width, height, ...rest }: ClouduploadIconProps) => React.JSX.Element;
|
|
248
|
+
export interface ChevronRightRoundedIconProps extends React.SVGProps<SVGSVGElement> {
|
|
249
|
+
size?: number | string;
|
|
175
250
|
color?: string;
|
|
251
|
+
width?: number | string;
|
|
252
|
+
height?: number | string;
|
|
176
253
|
}
|
|
177
|
-
export declare const
|
|
178
|
-
export interface
|
|
179
|
-
size?: number;
|
|
254
|
+
export declare const ChevronRightRoundedIcon: ({ size, color, width, height, ...rest }: ChevronRightRoundedIconProps) => React.JSX.Element;
|
|
255
|
+
export interface EditSquareIconProps extends React.SVGProps<SVGSVGElement> {
|
|
256
|
+
size?: number | string;
|
|
180
257
|
color?: string;
|
|
258
|
+
width?: number | string;
|
|
259
|
+
height?: number | string;
|
|
181
260
|
}
|
|
182
|
-
export declare const
|
|
183
|
-
export interface
|
|
184
|
-
size?: number;
|
|
261
|
+
export declare const EditSquareIcon: ({ size, color, width, height, ...rest }: EditSquareIconProps) => React.JSX.Element;
|
|
262
|
+
export interface BerryPlansRoundedIcon200Props extends React.SVGProps<SVGSVGElement> {
|
|
263
|
+
size?: number | string;
|
|
185
264
|
color?: string;
|
|
265
|
+
width?: number | string;
|
|
266
|
+
height?: number | string;
|
|
186
267
|
}
|
|
187
|
-
export declare const
|
|
188
|
-
export interface
|
|
189
|
-
size?: number;
|
|
268
|
+
export declare const BerryPlansRoundedIcon200: ({ size, color, width, height, ...rest }: BerryPlansRoundedIcon200Props) => React.JSX.Element;
|
|
269
|
+
export interface BerryPayRoundedIcon200Props extends React.SVGProps<SVGSVGElement> {
|
|
270
|
+
size?: number | string;
|
|
190
271
|
color?: string;
|
|
272
|
+
width?: number | string;
|
|
273
|
+
height?: number | string;
|
|
191
274
|
}
|
|
192
|
-
export declare const
|
|
193
|
-
export interface
|
|
194
|
-
size?: number;
|
|
275
|
+
export declare const BerryPayRoundedIcon200: ({ size, color, width, height, ...rest }: BerryPayRoundedIcon200Props) => React.JSX.Element;
|
|
276
|
+
export interface ChevronLeftIconProps extends React.SVGProps<SVGSVGElement> {
|
|
277
|
+
size?: number | string;
|
|
195
278
|
color?: string;
|
|
279
|
+
width?: number | string;
|
|
280
|
+
height?: number | string;
|
|
196
281
|
}
|
|
197
|
-
export declare const
|
|
198
|
-
export interface
|
|
199
|
-
size?: number;
|
|
282
|
+
export declare const ChevronLeftIcon: ({ size, color, width, height, ...rest }: ChevronLeftIconProps) => React.JSX.Element;
|
|
283
|
+
export interface BerryNerdRoundedIcon200Props extends React.SVGProps<SVGSVGElement> {
|
|
284
|
+
size?: number | string;
|
|
200
285
|
color?: string;
|
|
286
|
+
width?: number | string;
|
|
287
|
+
height?: number | string;
|
|
201
288
|
}
|
|
202
|
-
export declare const
|
|
203
|
-
export interface
|
|
204
|
-
size?: number;
|
|
289
|
+
export declare const BerryNerdRoundedIcon200: ({ size, color, width, height, ...rest }: BerryNerdRoundedIcon200Props) => React.JSX.Element;
|
|
290
|
+
export interface AccountCircleIconProps extends React.SVGProps<SVGSVGElement> {
|
|
291
|
+
size?: number | string;
|
|
205
292
|
color?: string;
|
|
293
|
+
width?: number | string;
|
|
294
|
+
height?: number | string;
|
|
206
295
|
}
|
|
207
|
-
export declare const
|
|
296
|
+
export declare const AccountCircleIcon: ({ size, color, width, height, ...rest }: AccountCircleIconProps) => React.JSX.Element;
|
|
297
|
+
export interface CheckCircleIconProps extends React.SVGProps<SVGSVGElement> {
|
|
298
|
+
size?: number | string;
|
|
299
|
+
color?: string;
|
|
300
|
+
width?: number | string;
|
|
301
|
+
height?: number | string;
|
|
302
|
+
}
|
|
303
|
+
export declare const CheckCircleIcon: ({ size, color, width, height, ...rest }: CheckCircleIconProps) => React.JSX.Element;
|
|
208
304
|
export interface LetterIconProps extends React.SVGProps<SVGSVGElement> {
|
|
209
|
-
size?: number;
|
|
305
|
+
size?: number | string;
|
|
210
306
|
color?: string;
|
|
307
|
+
width?: number | string;
|
|
308
|
+
height?: number | string;
|
|
211
309
|
}
|
|
212
|
-
export declare const LetterIcon: ({ size, color, ...rest }: LetterIconProps) => React.JSX.Element;
|
|
213
|
-
export interface
|
|
214
|
-
size?: number;
|
|
310
|
+
export declare const LetterIcon: ({ size, color, width, height, ...rest }: LetterIconProps) => React.JSX.Element;
|
|
311
|
+
export interface DragIndicatorIconProps extends React.SVGProps<SVGSVGElement> {
|
|
312
|
+
size?: number | string;
|
|
215
313
|
color?: string;
|
|
314
|
+
width?: number | string;
|
|
315
|
+
height?: number | string;
|
|
216
316
|
}
|
|
217
|
-
export declare const
|
|
218
|
-
export interface
|
|
219
|
-
size?: number;
|
|
317
|
+
export declare const DragIndicatorIcon: ({ size, color, width, height, ...rest }: DragIndicatorIconProps) => React.JSX.Element;
|
|
318
|
+
export interface InsuranceIconProps extends React.SVGProps<SVGSVGElement> {
|
|
319
|
+
size?: number | string;
|
|
220
320
|
color?: string;
|
|
321
|
+
width?: number | string;
|
|
322
|
+
height?: number | string;
|
|
221
323
|
}
|
|
222
|
-
export declare const
|
|
223
|
-
export interface
|
|
224
|
-
size?: number;
|
|
324
|
+
export declare const InsuranceIcon: ({ size, color, width, height, ...rest }: InsuranceIconProps) => React.JSX.Element;
|
|
325
|
+
export interface WhatsappIconProps extends React.SVGProps<SVGSVGElement> {
|
|
326
|
+
size?: number | string;
|
|
225
327
|
color?: string;
|
|
328
|
+
width?: number | string;
|
|
329
|
+
height?: number | string;
|
|
226
330
|
}
|
|
227
|
-
export declare const
|
|
228
|
-
export interface
|
|
229
|
-
size?: number;
|
|
331
|
+
export declare const WhatsappIcon: ({ size, color, width, height, ...rest }: WhatsappIconProps) => React.JSX.Element;
|
|
332
|
+
export interface ArrowLeftIcon300Props extends React.SVGProps<SVGSVGElement> {
|
|
333
|
+
size?: number | string;
|
|
230
334
|
color?: string;
|
|
335
|
+
width?: number | string;
|
|
336
|
+
height?: number | string;
|
|
231
337
|
}
|
|
232
|
-
export declare const
|
|
233
|
-
export interface
|
|
234
|
-
size?: number;
|
|
338
|
+
export declare const ArrowLeftIcon300: ({ size, color, width, height, ...rest }: ArrowLeftIcon300Props) => React.JSX.Element;
|
|
339
|
+
export interface ArchiveIconProps extends React.SVGProps<SVGSVGElement> {
|
|
340
|
+
size?: number | string;
|
|
235
341
|
color?: string;
|
|
342
|
+
width?: number | string;
|
|
343
|
+
height?: number | string;
|
|
236
344
|
}
|
|
237
|
-
export declare const
|
|
238
|
-
export interface
|
|
239
|
-
size?: number;
|
|
345
|
+
export declare const ArchiveIcon: ({ size, color, width, height, ...rest }: ArchiveIconProps) => React.JSX.Element;
|
|
346
|
+
export interface MailIconProps extends React.SVGProps<SVGSVGElement> {
|
|
347
|
+
size?: number | string;
|
|
240
348
|
color?: string;
|
|
349
|
+
width?: number | string;
|
|
350
|
+
height?: number | string;
|
|
241
351
|
}
|
|
242
|
-
export declare const
|
|
243
|
-
export interface
|
|
244
|
-
size?: number;
|
|
352
|
+
export declare const MailIcon: ({ size, color, width, height, ...rest }: MailIconProps) => React.JSX.Element;
|
|
353
|
+
export interface AddIconProps extends React.SVGProps<SVGSVGElement> {
|
|
354
|
+
size?: number | string;
|
|
245
355
|
color?: string;
|
|
356
|
+
width?: number | string;
|
|
357
|
+
height?: number | string;
|
|
246
358
|
}
|
|
247
|
-
export declare const
|
|
248
|
-
export interface
|
|
249
|
-
size?: number;
|
|
359
|
+
export declare const AddIcon: ({ size, color, width, height, ...rest }: AddIconProps) => React.JSX.Element;
|
|
360
|
+
export interface VisibilityIconProps extends React.SVGProps<SVGSVGElement> {
|
|
361
|
+
size?: number | string;
|
|
250
362
|
color?: string;
|
|
363
|
+
width?: number | string;
|
|
364
|
+
height?: number | string;
|
|
251
365
|
}
|
|
252
|
-
export declare const
|
|
253
|
-
export interface
|
|
254
|
-
size?: number;
|
|
366
|
+
export declare const VisibilityIcon: ({ size, color, width, height, ...rest }: VisibilityIconProps) => React.JSX.Element;
|
|
367
|
+
export interface BerryTaskRoundedIcon200Props extends React.SVGProps<SVGSVGElement> {
|
|
368
|
+
size?: number | string;
|
|
255
369
|
color?: string;
|
|
370
|
+
width?: number | string;
|
|
371
|
+
height?: number | string;
|
|
256
372
|
}
|
|
257
|
-
export declare const
|
|
258
|
-
export interface
|
|
259
|
-
size?: number;
|
|
373
|
+
export declare const BerryTaskRoundedIcon200: ({ size, color, width, height, ...rest }: BerryTaskRoundedIcon200Props) => React.JSX.Element;
|
|
374
|
+
export interface ChevronRightIcon400Props extends React.SVGProps<SVGSVGElement> {
|
|
375
|
+
size?: number | string;
|
|
260
376
|
color?: string;
|
|
377
|
+
width?: number | string;
|
|
378
|
+
height?: number | string;
|
|
261
379
|
}
|
|
262
|
-
export declare const
|
|
263
|
-
export interface
|
|
264
|
-
size?: number;
|
|
380
|
+
export declare const ChevronRightIcon400: ({ size, color, width, height, ...rest }: ChevronRightIcon400Props) => React.JSX.Element;
|
|
381
|
+
export interface MinusRoundedIconProps extends React.SVGProps<SVGSVGElement> {
|
|
382
|
+
size?: number | string;
|
|
265
383
|
color?: string;
|
|
384
|
+
width?: number | string;
|
|
385
|
+
height?: number | string;
|
|
266
386
|
}
|
|
267
|
-
export declare const
|
|
268
|
-
export interface
|
|
269
|
-
size?: number;
|
|
387
|
+
export declare const MinusRoundedIcon: ({ size, color, width, height, ...rest }: MinusRoundedIconProps) => React.JSX.Element;
|
|
388
|
+
export interface WaveBerryGraphicProps extends React.SVGProps<SVGSVGElement> {
|
|
389
|
+
size?: number | string;
|
|
270
390
|
color?: string;
|
|
391
|
+
width?: number | string;
|
|
392
|
+
height?: number | string;
|
|
271
393
|
}
|
|
272
|
-
export declare const
|
|
273
|
-
export interface
|
|
274
|
-
size?: number;
|
|
394
|
+
export declare const WaveBerryGraphic: ({ size, color, width, height, ...rest }: WaveBerryGraphicProps) => React.JSX.Element;
|
|
395
|
+
export interface UnArchiveIconProps extends React.SVGProps<SVGSVGElement> {
|
|
396
|
+
size?: number | string;
|
|
275
397
|
color?: string;
|
|
398
|
+
width?: number | string;
|
|
399
|
+
height?: number | string;
|
|
276
400
|
}
|
|
277
|
-
export declare const
|
|
401
|
+
export declare const UnArchiveIcon: ({ size, color, width, height, ...rest }: UnArchiveIconProps) => React.JSX.Element;
|