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