@deepanmano/berry-icon-library 1.0.49 → 1.0.51
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 +28 -0
- package/dist/index.js +1053 -842
- package/dist/index.js.map +8 -4
- 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 HomeIconProps extends React.SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
color?: string;
|
|
6
|
+
width?: number | string;
|
|
7
|
+
height?: number | string;
|
|
8
|
+
}
|
|
9
|
+
export declare const HomeIcon: ({ size, color, width, height, ...rest }: HomeIconProps) => React.JSX.Element;
|
|
3
10
|
export interface DefenceBerryGraphicProps extends React.SVGProps<SVGSVGElement> {
|
|
4
11
|
size?: number | string;
|
|
5
12
|
color?: string;
|
|
@@ -49,6 +56,20 @@ export interface BerryFormsRoundedIcon200Props extends React.SVGProps<SVGSVGElem
|
|
|
49
56
|
height?: number | string;
|
|
50
57
|
}
|
|
51
58
|
export declare const BerryFormsRoundedIcon200: ({ size, color, width, height, ...rest }: BerryFormsRoundedIcon200Props) => React.JSX.Element;
|
|
59
|
+
export interface ExcitedBerryGraphicProps extends React.SVGProps<SVGSVGElement> {
|
|
60
|
+
size?: number | string;
|
|
61
|
+
color?: string;
|
|
62
|
+
width?: number | string;
|
|
63
|
+
height?: number | string;
|
|
64
|
+
}
|
|
65
|
+
export declare const ExcitedBerryGraphic: ({ size, color, width, height, ...rest }: ExcitedBerryGraphicProps) => React.JSX.Element;
|
|
66
|
+
export interface DraftIconProps extends React.SVGProps<SVGSVGElement> {
|
|
67
|
+
size?: number | string;
|
|
68
|
+
color?: string;
|
|
69
|
+
width?: number | string;
|
|
70
|
+
height?: number | string;
|
|
71
|
+
}
|
|
72
|
+
export declare const DraftIcon: ({ size, color, width, height, ...rest }: DraftIconProps) => React.JSX.Element;
|
|
52
73
|
export interface ExpandArrowIconProps extends React.SVGProps<SVGSVGElement> {
|
|
53
74
|
size?: number | string;
|
|
54
75
|
color?: string;
|
|
@@ -196,6 +217,13 @@ export interface MobileIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
196
217
|
height?: number | string;
|
|
197
218
|
}
|
|
198
219
|
export declare const MobileIcon: ({ size, color, width, height, ...rest }: MobileIconProps) => React.JSX.Element;
|
|
220
|
+
export interface ConversationIconProps extends React.SVGProps<SVGSVGElement> {
|
|
221
|
+
size?: number | string;
|
|
222
|
+
color?: string;
|
|
223
|
+
width?: number | string;
|
|
224
|
+
height?: number | string;
|
|
225
|
+
}
|
|
226
|
+
export declare const ConversationIcon: ({ size, color, width, height, ...rest }: ConversationIconProps) => React.JSX.Element;
|
|
199
227
|
export interface DeactivateIconProps extends React.SVGProps<SVGSVGElement> {
|
|
200
228
|
size?: number | string;
|
|
201
229
|
color?: string;
|