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