@deepanmano/berry-icon-library 1.0.50 → 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 +21 -0
- package/dist/index.js +946 -877
- package/dist/index.js.map +7 -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;
|
|
@@ -56,6 +63,13 @@ export interface ExcitedBerryGraphicProps extends React.SVGProps<SVGSVGElement>
|
|
|
56
63
|
height?: number | string;
|
|
57
64
|
}
|
|
58
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;
|
|
59
73
|
export interface ExpandArrowIconProps extends React.SVGProps<SVGSVGElement> {
|
|
60
74
|
size?: number | string;
|
|
61
75
|
color?: string;
|
|
@@ -203,6 +217,13 @@ export interface MobileIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
203
217
|
height?: number | string;
|
|
204
218
|
}
|
|
205
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;
|
|
206
227
|
export interface DeactivateIconProps extends React.SVGProps<SVGSVGElement> {
|
|
207
228
|
size?: number | string;
|
|
208
229
|
color?: string;
|