@deepanmano/berry-icon-library 1.0.38 → 1.0.40
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 +767 -220
- package/dist/index.js.map +6 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -343,6 +343,13 @@ export interface ArchiveIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
343
343
|
height?: number | string;
|
|
344
344
|
}
|
|
345
345
|
export declare const ArchiveIcon: ({ size, color, width, height, ...rest }: ArchiveIconProps) => React.JSX.Element;
|
|
346
|
+
export interface AdultBerryGraphicProps extends React.SVGProps<SVGSVGElement> {
|
|
347
|
+
size?: number | string;
|
|
348
|
+
color?: string;
|
|
349
|
+
width?: number | string;
|
|
350
|
+
height?: number | string;
|
|
351
|
+
}
|
|
352
|
+
export declare const AdultBerryGraphic: ({ size, color, width, height, ...rest }: AdultBerryGraphicProps) => React.JSX.Element;
|
|
346
353
|
export interface MailIconProps extends React.SVGProps<SVGSVGElement> {
|
|
347
354
|
size?: number | string;
|
|
348
355
|
color?: string;
|
|
@@ -385,6 +392,13 @@ export interface MinusRoundedIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
385
392
|
height?: number | string;
|
|
386
393
|
}
|
|
387
394
|
export declare const MinusRoundedIcon: ({ size, color, width, height, ...rest }: MinusRoundedIconProps) => React.JSX.Element;
|
|
395
|
+
export interface FlyBerryGraphicsProps extends React.SVGProps<SVGSVGElement> {
|
|
396
|
+
size?: number | string;
|
|
397
|
+
color?: string;
|
|
398
|
+
width?: number | string;
|
|
399
|
+
height?: number | string;
|
|
400
|
+
}
|
|
401
|
+
export declare const FlyBerryGraphics: ({ size, color, width, height, ...rest }: FlyBerryGraphicsProps) => React.JSX.Element;
|
|
388
402
|
export interface WaveBerryGraphicProps extends React.SVGProps<SVGSVGElement> {
|
|
389
403
|
size?: number | string;
|
|
390
404
|
color?: string;
|
|
@@ -392,6 +406,13 @@ export interface WaveBerryGraphicProps extends React.SVGProps<SVGSVGElement> {
|
|
|
392
406
|
height?: number | string;
|
|
393
407
|
}
|
|
394
408
|
export declare const WaveBerryGraphic: ({ size, color, width, height, ...rest }: WaveBerryGraphicProps) => React.JSX.Element;
|
|
409
|
+
export interface ChildBerryGraphicProps extends React.SVGProps<SVGSVGElement> {
|
|
410
|
+
size?: number | string;
|
|
411
|
+
color?: string;
|
|
412
|
+
width?: number | string;
|
|
413
|
+
height?: number | string;
|
|
414
|
+
}
|
|
415
|
+
export declare const ChildBerryGraphic: ({ size, color, width, height, ...rest }: ChildBerryGraphicProps) => React.JSX.Element;
|
|
395
416
|
export interface UnArchiveIconProps extends React.SVGProps<SVGSVGElement> {
|
|
396
417
|
size?: number | string;
|
|
397
418
|
color?: string;
|