@deepanmano/berry-icon-library 1.0.48 → 1.0.50
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 +799 -451
- package/dist/index.js.map +5 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -49,6 +49,13 @@ export interface BerryFormsRoundedIcon200Props extends React.SVGProps<SVGSVGElem
|
|
|
49
49
|
height?: number | string;
|
|
50
50
|
}
|
|
51
51
|
export declare const BerryFormsRoundedIcon200: ({ size, color, width, height, ...rest }: BerryFormsRoundedIcon200Props) => React.JSX.Element;
|
|
52
|
+
export interface ExcitedBerryGraphicProps extends React.SVGProps<SVGSVGElement> {
|
|
53
|
+
size?: number | string;
|
|
54
|
+
color?: string;
|
|
55
|
+
width?: number | string;
|
|
56
|
+
height?: number | string;
|
|
57
|
+
}
|
|
58
|
+
export declare const ExcitedBerryGraphic: ({ size, color, width, height, ...rest }: ExcitedBerryGraphicProps) => React.JSX.Element;
|
|
52
59
|
export interface ExpandArrowIconProps extends React.SVGProps<SVGSVGElement> {
|
|
53
60
|
size?: number | string;
|
|
54
61
|
color?: string;
|
|
@@ -322,6 +329,13 @@ export interface ChevronLeftIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
322
329
|
height?: number | string;
|
|
323
330
|
}
|
|
324
331
|
export declare const ChevronLeftIcon: ({ size, color, width, height, ...rest }: ChevronLeftIconProps) => React.JSX.Element;
|
|
332
|
+
export interface BalloonBerryGraphicProps extends React.SVGProps<SVGSVGElement> {
|
|
333
|
+
size?: number | string;
|
|
334
|
+
color?: string;
|
|
335
|
+
width?: number | string;
|
|
336
|
+
height?: number | string;
|
|
337
|
+
}
|
|
338
|
+
export declare const BalloonBerryGraphic: ({ size, color, width, height, ...rest }: BalloonBerryGraphicProps) => React.JSX.Element;
|
|
325
339
|
export interface BerryNerdRoundedIcon200Props extends React.SVGProps<SVGSVGElement> {
|
|
326
340
|
size?: number | string;
|
|
327
341
|
color?: string;
|