@deepanmano/berry-icon-library 1.0.39 → 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 +7 -0
- package/dist/index.js +306 -113
- package/dist/index.js.map +4 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -392,6 +392,13 @@ export interface MinusRoundedIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
392
392
|
height?: number | string;
|
|
393
393
|
}
|
|
394
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;
|
|
395
402
|
export interface WaveBerryGraphicProps extends React.SVGProps<SVGSVGElement> {
|
|
396
403
|
size?: number | string;
|
|
397
404
|
color?: string;
|