@deepanmano/berry-icon-library 1.0.40 → 1.0.42
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 +21 -0
- package/dist/index.js +1399 -320
- package/dist/index.js.map +6 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
|
|
3
|
+
export interface DefenceBerryGraphicProps extends React.SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
color?: string;
|
|
6
|
+
width?: number | string;
|
|
7
|
+
height?: number | string;
|
|
8
|
+
}
|
|
9
|
+
export declare const DefenceBerryGraphic: ({ size, color, width, height, ...rest }: DefenceBerryGraphicProps) => React.JSX.Element;
|
|
3
10
|
export interface PracticeIconProps extends React.SVGProps<SVGSVGElement> {
|
|
4
11
|
size?: number | string;
|
|
5
12
|
color?: string;
|
|
@@ -21,6 +28,13 @@ export interface CreditCardIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
21
28
|
height?: number | string;
|
|
22
29
|
}
|
|
23
30
|
export declare const CreditCardIcon: ({ size, color, width, height, ...rest }: CreditCardIconProps) => React.JSX.Element;
|
|
31
|
+
export interface FinanceBerryGraphicProps extends React.SVGProps<SVGSVGElement> {
|
|
32
|
+
size?: number | string;
|
|
33
|
+
color?: string;
|
|
34
|
+
width?: number | string;
|
|
35
|
+
height?: number | string;
|
|
36
|
+
}
|
|
37
|
+
export declare const FinanceBerryGraphic: ({ size, color, width, height, ...rest }: FinanceBerryGraphicProps) => React.JSX.Element;
|
|
24
38
|
export interface BerryFormsRoundedIcon200Props extends React.SVGProps<SVGSVGElement> {
|
|
25
39
|
size?: number | string;
|
|
26
40
|
color?: string;
|
|
@@ -196,6 +210,13 @@ export interface CasePresentationIconProps extends React.SVGProps<SVGSVGElement>
|
|
|
196
210
|
height?: number | string;
|
|
197
211
|
}
|
|
198
212
|
export declare const CasePresentationIcon: ({ size, color, width, height, ...rest }: CasePresentationIconProps) => React.JSX.Element;
|
|
213
|
+
export interface FamilyBerryGraphicProps extends React.SVGProps<SVGSVGElement> {
|
|
214
|
+
size?: number | string;
|
|
215
|
+
color?: string;
|
|
216
|
+
width?: number | string;
|
|
217
|
+
height?: number | string;
|
|
218
|
+
}
|
|
219
|
+
export declare const FamilyBerryGraphic: ({ size, color, width, height, ...rest }: FamilyBerryGraphicProps) => React.JSX.Element;
|
|
199
220
|
export interface ChevronRightIconProps extends React.SVGProps<SVGSVGElement> {
|
|
200
221
|
size?: number | string;
|
|
201
222
|
color?: string;
|