@deepanmano/berry-icon-library 1.0.30 → 1.0.32
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 +87 -77
- package/dist/index.js +168 -134
- package/dist/index.js.map +37 -35
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,207 +1,217 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
|
|
3
|
-
export interface
|
|
3
|
+
export interface CalenderIconProps extends React.SVGProps<SVGSVGElement> {
|
|
4
4
|
size?: number;
|
|
5
5
|
color?: string;
|
|
6
6
|
}
|
|
7
|
-
export declare const
|
|
8
|
-
export interface
|
|
7
|
+
export declare const CalenderIcon: ({ size, color, ...rest }: CalenderIconProps) => React.JSX.Element;
|
|
8
|
+
export interface CommunicationIconProps extends React.SVGProps<SVGSVGElement> {
|
|
9
9
|
size?: number;
|
|
10
10
|
color?: string;
|
|
11
11
|
}
|
|
12
|
-
export declare const
|
|
13
|
-
export interface
|
|
12
|
+
export declare const CommunicationIcon: ({ size, color, ...rest }: CommunicationIconProps) => React.JSX.Element;
|
|
13
|
+
export interface LockIconProps extends React.SVGProps<SVGSVGElement> {
|
|
14
14
|
size?: number;
|
|
15
15
|
color?: string;
|
|
16
16
|
}
|
|
17
|
-
export declare const
|
|
18
|
-
export interface
|
|
17
|
+
export declare const LockIcon: ({ size, color, ...rest }: LockIconProps) => React.JSX.Element;
|
|
18
|
+
export interface ArchiveIconProps extends React.SVGProps<SVGSVGElement> {
|
|
19
19
|
size?: number;
|
|
20
20
|
color?: string;
|
|
21
21
|
}
|
|
22
|
-
export declare const
|
|
23
|
-
export interface
|
|
22
|
+
export declare const ArchiveIcon: ({ size, color, ...rest }: ArchiveIconProps) => React.JSX.Element;
|
|
23
|
+
export interface TreatmentPlanIconProps extends React.SVGProps<SVGSVGElement> {
|
|
24
24
|
size?: number;
|
|
25
25
|
color?: string;
|
|
26
26
|
}
|
|
27
|
-
export declare const
|
|
28
|
-
export interface
|
|
27
|
+
export declare const TreatmentPlanIcon: ({ size, color, ...rest }: TreatmentPlanIconProps) => React.JSX.Element;
|
|
28
|
+
export interface MinusRoundedIconProps extends React.SVGProps<SVGSVGElement> {
|
|
29
29
|
size?: number;
|
|
30
30
|
color?: string;
|
|
31
31
|
}
|
|
32
|
-
export declare const
|
|
33
|
-
export interface
|
|
32
|
+
export declare const MinusRoundedIcon: ({ size, color, ...rest }: MinusRoundedIconProps) => React.JSX.Element;
|
|
33
|
+
export interface MoreVerticalIconProps extends React.SVGProps<SVGSVGElement> {
|
|
34
34
|
size?: number;
|
|
35
35
|
color?: string;
|
|
36
36
|
}
|
|
37
|
-
export declare const
|
|
38
|
-
export interface
|
|
37
|
+
export declare const MoreVerticalIcon: ({ size, color, ...rest }: MoreVerticalIconProps) => React.JSX.Element;
|
|
38
|
+
export interface ChevronRightRoundedIconProps extends React.SVGProps<SVGSVGElement> {
|
|
39
39
|
size?: number;
|
|
40
40
|
color?: string;
|
|
41
41
|
}
|
|
42
|
-
export declare const
|
|
43
|
-
export interface
|
|
42
|
+
export declare const ChevronRightRoundedIcon: ({ size, color, ...rest }: ChevronRightRoundedIconProps) => React.JSX.Element;
|
|
43
|
+
export interface CreditCardIconProps extends React.SVGProps<SVGSVGElement> {
|
|
44
44
|
size?: number;
|
|
45
45
|
color?: string;
|
|
46
46
|
}
|
|
47
|
-
export declare const
|
|
48
|
-
export interface
|
|
47
|
+
export declare const CreditCardIcon: ({ size, color, ...rest }: CreditCardIconProps) => React.JSX.Element;
|
|
48
|
+
export interface AddRoundedIconProps extends React.SVGProps<SVGSVGElement> {
|
|
49
49
|
size?: number;
|
|
50
50
|
color?: string;
|
|
51
51
|
}
|
|
52
|
-
export declare const
|
|
53
|
-
export interface
|
|
52
|
+
export declare const AddRoundedIcon: ({ size, color, ...rest }: AddRoundedIconProps) => React.JSX.Element;
|
|
53
|
+
export interface HourGlassIconProps extends React.SVGProps<SVGSVGElement> {
|
|
54
54
|
size?: number;
|
|
55
55
|
color?: string;
|
|
56
56
|
}
|
|
57
|
-
export declare const
|
|
58
|
-
export interface
|
|
57
|
+
export declare const HourGlassIcon: ({ size, color, ...rest }: HourGlassIconProps) => React.JSX.Element;
|
|
58
|
+
export interface UnArchiveIconProps extends React.SVGProps<SVGSVGElement> {
|
|
59
59
|
size?: number;
|
|
60
60
|
color?: string;
|
|
61
61
|
}
|
|
62
|
-
export declare const
|
|
63
|
-
export interface
|
|
62
|
+
export declare const UnArchiveIcon: ({ size, color, ...rest }: UnArchiveIconProps) => React.JSX.Element;
|
|
63
|
+
export interface ClouduploadIconProps extends React.SVGProps<SVGSVGElement> {
|
|
64
64
|
size?: number;
|
|
65
65
|
color?: string;
|
|
66
66
|
}
|
|
67
|
-
export declare const
|
|
68
|
-
export interface
|
|
67
|
+
export declare const ClouduploadIcon: ({ size, color, ...rest }: ClouduploadIconProps) => React.JSX.Element;
|
|
68
|
+
export interface ChevronLeftIconProps extends React.SVGProps<SVGSVGElement> {
|
|
69
69
|
size?: number;
|
|
70
70
|
color?: string;
|
|
71
71
|
}
|
|
72
|
-
export declare const
|
|
72
|
+
export declare const ChevronLeftIcon: ({ size, color, ...rest }: ChevronLeftIconProps) => React.JSX.Element;
|
|
73
73
|
export interface PracticeIconProps extends React.SVGProps<SVGSVGElement> {
|
|
74
74
|
size?: number;
|
|
75
75
|
color?: string;
|
|
76
76
|
}
|
|
77
77
|
export declare const PracticeIcon: ({ size, color, ...rest }: PracticeIconProps) => React.JSX.Element;
|
|
78
|
-
export interface
|
|
79
|
-
size?: number;
|
|
80
|
-
color?: string;
|
|
81
|
-
}
|
|
82
|
-
export declare const ExpandArrowIcon: ({ size, color, ...rest }: ExpandArrowIconProps) => React.JSX.Element;
|
|
83
|
-
export interface AccountCircleIconProps extends React.SVGProps<SVGSVGElement> {
|
|
78
|
+
export interface ChevronRightIcon400Props extends React.SVGProps<SVGSVGElement> {
|
|
84
79
|
size?: number;
|
|
85
80
|
color?: string;
|
|
86
81
|
}
|
|
87
|
-
export declare const
|
|
82
|
+
export declare const ChevronRightIcon400: ({ size, color, ...rest }: ChevronRightIcon400Props) => React.JSX.Element;
|
|
88
83
|
export interface VisibilityIconProps extends React.SVGProps<SVGSVGElement> {
|
|
89
84
|
size?: number;
|
|
90
85
|
color?: string;
|
|
91
86
|
}
|
|
92
87
|
export declare const VisibilityIcon: ({ size, color, ...rest }: VisibilityIconProps) => React.JSX.Element;
|
|
93
|
-
export interface
|
|
94
|
-
size?: number;
|
|
95
|
-
color?: string;
|
|
96
|
-
}
|
|
97
|
-
export declare const ChevronRightRoundedIcon: ({ size, color, ...rest }: ChevronRightRoundedIconProps) => React.JSX.Element;
|
|
98
|
-
export interface CommunicationIconProps extends React.SVGProps<SVGSVGElement> {
|
|
99
|
-
size?: number;
|
|
100
|
-
color?: string;
|
|
101
|
-
}
|
|
102
|
-
export declare const CommunicationIcon: ({ size, color, ...rest }: CommunicationIconProps) => React.JSX.Element;
|
|
103
|
-
export interface ArchiveIconProps extends React.SVGProps<SVGSVGElement> {
|
|
88
|
+
export interface LocationIconProps extends React.SVGProps<SVGSVGElement> {
|
|
104
89
|
size?: number;
|
|
105
90
|
color?: string;
|
|
106
91
|
}
|
|
107
|
-
export declare const
|
|
108
|
-
export interface
|
|
92
|
+
export declare const LocationIcon: ({ size, color, ...rest }: LocationIconProps) => React.JSX.Element;
|
|
93
|
+
export interface ExpandArrowIconProps extends React.SVGProps<SVGSVGElement> {
|
|
109
94
|
size?: number;
|
|
110
95
|
color?: string;
|
|
111
96
|
}
|
|
112
|
-
export declare const
|
|
97
|
+
export declare const ExpandArrowIcon: ({ size, color, ...rest }: ExpandArrowIconProps) => React.JSX.Element;
|
|
113
98
|
export interface MailIconProps extends React.SVGProps<SVGSVGElement> {
|
|
114
99
|
size?: number;
|
|
115
100
|
color?: string;
|
|
116
101
|
}
|
|
117
102
|
export declare const MailIcon: ({ size, color, ...rest }: MailIconProps) => React.JSX.Element;
|
|
118
|
-
export interface
|
|
103
|
+
export interface CloseIconProps extends React.SVGProps<SVGSVGElement> {
|
|
119
104
|
size?: number;
|
|
120
105
|
color?: string;
|
|
121
106
|
}
|
|
122
|
-
export declare const
|
|
107
|
+
export declare const CloseIcon: ({ size, color, ...rest }: CloseIconProps) => React.JSX.Element;
|
|
123
108
|
export interface DragIndicatorIconProps extends React.SVGProps<SVGSVGElement> {
|
|
124
109
|
size?: number;
|
|
125
110
|
color?: string;
|
|
126
111
|
}
|
|
127
112
|
export declare const DragIndicatorIcon: ({ size, color, ...rest }: DragIndicatorIconProps) => React.JSX.Element;
|
|
128
|
-
export interface
|
|
113
|
+
export interface InfoIconProps extends React.SVGProps<SVGSVGElement> {
|
|
129
114
|
size?: number;
|
|
130
115
|
color?: string;
|
|
131
116
|
}
|
|
132
|
-
export declare const
|
|
133
|
-
export interface
|
|
117
|
+
export declare const InfoIcon: ({ size, color, ...rest }: InfoIconProps) => React.JSX.Element;
|
|
118
|
+
export interface GlobeIconProps extends React.SVGProps<SVGSVGElement> {
|
|
134
119
|
size?: number;
|
|
135
120
|
color?: string;
|
|
136
121
|
}
|
|
137
|
-
export declare const
|
|
138
|
-
export interface
|
|
122
|
+
export declare const GlobeIcon: ({ size, color, ...rest }: GlobeIconProps) => React.JSX.Element;
|
|
123
|
+
export interface DeleteIconProps extends React.SVGProps<SVGSVGElement> {
|
|
139
124
|
size?: number;
|
|
140
125
|
color?: string;
|
|
141
126
|
}
|
|
142
|
-
export declare const
|
|
127
|
+
export declare const DeleteIcon: ({ size, color, ...rest }: DeleteIconProps) => React.JSX.Element;
|
|
128
|
+
export interface CheckCircleIconProps extends React.SVGProps<SVGSVGElement> {
|
|
129
|
+
size?: number;
|
|
130
|
+
color?: string;
|
|
131
|
+
}
|
|
132
|
+
export declare const CheckCircleIcon: ({ size, color, ...rest }: CheckCircleIconProps) => React.JSX.Element;
|
|
143
133
|
export interface ChevronLeftRoundedIconProps extends React.SVGProps<SVGSVGElement> {
|
|
144
134
|
size?: number;
|
|
145
135
|
color?: string;
|
|
146
136
|
}
|
|
147
137
|
export declare const ChevronLeftRoundedIcon: ({ size, color, ...rest }: ChevronLeftRoundedIconProps) => React.JSX.Element;
|
|
148
|
-
export interface
|
|
138
|
+
export interface EditSquareIconProps extends React.SVGProps<SVGSVGElement> {
|
|
149
139
|
size?: number;
|
|
150
140
|
color?: string;
|
|
151
141
|
}
|
|
152
|
-
export declare const
|
|
153
|
-
export interface
|
|
142
|
+
export declare const EditSquareIcon: ({ size, color, ...rest }: EditSquareIconProps) => React.JSX.Element;
|
|
143
|
+
export interface AddIconProps extends React.SVGProps<SVGSVGElement> {
|
|
154
144
|
size?: number;
|
|
155
145
|
color?: string;
|
|
156
146
|
}
|
|
157
|
-
export declare const
|
|
147
|
+
export declare const AddIcon: ({ size, color, ...rest }: AddIconProps) => React.JSX.Element;
|
|
158
148
|
export interface PersonIconProps extends React.SVGProps<SVGSVGElement> {
|
|
159
149
|
size?: number;
|
|
160
150
|
color?: string;
|
|
161
151
|
}
|
|
162
152
|
export declare const PersonIcon: ({ size, color, ...rest }: PersonIconProps) => React.JSX.Element;
|
|
163
|
-
export interface
|
|
153
|
+
export interface InsuranceIconProps extends React.SVGProps<SVGSVGElement> {
|
|
164
154
|
size?: number;
|
|
165
155
|
color?: string;
|
|
166
156
|
}
|
|
167
|
-
export declare const
|
|
168
|
-
export interface
|
|
157
|
+
export declare const InsuranceIcon: ({ size, color, ...rest }: InsuranceIconProps) => React.JSX.Element;
|
|
158
|
+
export interface AccountCircleIconProps extends React.SVGProps<SVGSVGElement> {
|
|
169
159
|
size?: number;
|
|
170
160
|
color?: string;
|
|
171
161
|
}
|
|
172
|
-
export declare const
|
|
173
|
-
export interface
|
|
162
|
+
export declare const AccountCircleIcon: ({ size, color, ...rest }: AccountCircleIconProps) => React.JSX.Element;
|
|
163
|
+
export interface MobileIconProps extends React.SVGProps<SVGSVGElement> {
|
|
174
164
|
size?: number;
|
|
175
165
|
color?: string;
|
|
176
166
|
}
|
|
177
|
-
export declare const
|
|
178
|
-
export interface
|
|
167
|
+
export declare const MobileIcon: ({ size, color, ...rest }: MobileIconProps) => React.JSX.Element;
|
|
168
|
+
export interface FormsIconProps extends React.SVGProps<SVGSVGElement> {
|
|
179
169
|
size?: number;
|
|
180
170
|
color?: string;
|
|
181
171
|
}
|
|
182
|
-
export declare const
|
|
172
|
+
export declare const FormsIcon: ({ size, color, ...rest }: FormsIconProps) => React.JSX.Element;
|
|
173
|
+
export interface FinancingIconProps extends React.SVGProps<SVGSVGElement> {
|
|
174
|
+
size?: number;
|
|
175
|
+
color?: string;
|
|
176
|
+
}
|
|
177
|
+
export declare const FinancingIcon: ({ size, color, ...rest }: FinancingIconProps) => React.JSX.Element;
|
|
178
|
+
export interface LetterIconProps extends React.SVGProps<SVGSVGElement> {
|
|
179
|
+
size?: number;
|
|
180
|
+
color?: string;
|
|
181
|
+
}
|
|
182
|
+
export declare const LetterIcon: ({ size, color, ...rest }: LetterIconProps) => React.JSX.Element;
|
|
183
|
+
export interface DeactivateIconProps extends React.SVGProps<SVGSVGElement> {
|
|
184
|
+
size?: number;
|
|
185
|
+
color?: string;
|
|
186
|
+
}
|
|
187
|
+
export declare const DeactivateIcon: ({ size, color, ...rest }: DeactivateIconProps) => React.JSX.Element;
|
|
188
|
+
export interface CircleXRoundedIconProps extends React.SVGProps<SVGSVGElement> {
|
|
189
|
+
size?: number;
|
|
190
|
+
color?: string;
|
|
191
|
+
}
|
|
192
|
+
export declare const CircleXRoundedIcon: ({ size, color, ...rest }: CircleXRoundedIconProps) => React.JSX.Element;
|
|
183
193
|
export interface CasePresentationIconProps extends React.SVGProps<SVGSVGElement> {
|
|
184
194
|
size?: number;
|
|
185
195
|
color?: string;
|
|
186
196
|
}
|
|
187
197
|
export declare const CasePresentationIcon: ({ size, color, ...rest }: CasePresentationIconProps) => React.JSX.Element;
|
|
188
|
-
export interface
|
|
198
|
+
export interface SMSIconProps extends React.SVGProps<SVGSVGElement> {
|
|
189
199
|
size?: number;
|
|
190
200
|
color?: string;
|
|
191
201
|
}
|
|
192
|
-
export declare const
|
|
193
|
-
export interface
|
|
202
|
+
export declare const SMSIcon: ({ size, color, ...rest }: SMSIconProps) => React.JSX.Element;
|
|
203
|
+
export interface ChevronRightIconProps extends React.SVGProps<SVGSVGElement> {
|
|
194
204
|
size?: number;
|
|
195
205
|
color?: string;
|
|
196
206
|
}
|
|
197
|
-
export declare const
|
|
198
|
-
export interface
|
|
207
|
+
export declare const ChevronRightIcon: ({ size, color, ...rest }: ChevronRightIconProps) => React.JSX.Element;
|
|
208
|
+
export interface ExpandCloseIconProps extends React.SVGProps<SVGSVGElement> {
|
|
199
209
|
size?: number;
|
|
200
210
|
color?: string;
|
|
201
211
|
}
|
|
202
|
-
export declare const
|
|
203
|
-
export interface
|
|
212
|
+
export declare const ExpandCloseIcon: ({ size, color, ...rest }: ExpandCloseIconProps) => React.JSX.Element;
|
|
213
|
+
export interface SearchIconProps extends React.SVGProps<SVGSVGElement> {
|
|
204
214
|
size?: number;
|
|
205
215
|
color?: string;
|
|
206
216
|
}
|
|
207
|
-
export declare const
|
|
217
|
+
export declare const SearchIcon: ({ size, color, ...rest }: SearchIconProps) => React.JSX.Element;
|