@deepanmano/berry-icon-library 1.0.38 → 1.0.39
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 +574 -220
- package/dist/index.js.map +5 -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;
|
|
@@ -392,6 +399,13 @@ export interface WaveBerryGraphicProps extends React.SVGProps<SVGSVGElement> {
|
|
|
392
399
|
height?: number | string;
|
|
393
400
|
}
|
|
394
401
|
export declare const WaveBerryGraphic: ({ size, color, width, height, ...rest }: WaveBerryGraphicProps) => React.JSX.Element;
|
|
402
|
+
export interface ChildBerryGraphicProps extends React.SVGProps<SVGSVGElement> {
|
|
403
|
+
size?: number | string;
|
|
404
|
+
color?: string;
|
|
405
|
+
width?: number | string;
|
|
406
|
+
height?: number | string;
|
|
407
|
+
}
|
|
408
|
+
export declare const ChildBerryGraphic: ({ size, color, width, height, ...rest }: ChildBerryGraphicProps) => React.JSX.Element;
|
|
395
409
|
export interface UnArchiveIconProps extends React.SVGProps<SVGSVGElement> {
|
|
396
410
|
size?: number | string;
|
|
397
411
|
color?: string;
|