@deepanmano/berry-icon-library 1.0.41 → 1.0.45
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 +14 -0
- package/dist/index.js +774 -391
- package/dist/index.js.map +5 -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;
|
|
@@ -28,6 +35,13 @@ export interface FinanceBerryGraphicProps extends React.SVGProps<SVGSVGElement>
|
|
|
28
35
|
height?: number | string;
|
|
29
36
|
}
|
|
30
37
|
export declare const FinanceBerryGraphic: ({ size, color, width, height, ...rest }: FinanceBerryGraphicProps) => React.JSX.Element;
|
|
38
|
+
export interface ThumbsUpBerryGraphicProps extends React.SVGProps<SVGSVGElement> {
|
|
39
|
+
size?: number | string;
|
|
40
|
+
color?: string;
|
|
41
|
+
width?: number | string;
|
|
42
|
+
height?: number | string;
|
|
43
|
+
}
|
|
44
|
+
export declare const ThumbsUpBerryGraphic: ({ size, color, width, height, ...rest }: ThumbsUpBerryGraphicProps) => React.JSX.Element;
|
|
31
45
|
export interface BerryFormsRoundedIcon200Props extends React.SVGProps<SVGSVGElement> {
|
|
32
46
|
size?: number | string;
|
|
33
47
|
color?: string;
|