@deepanmano/berry-icon-library 1.0.51 → 1.0.52
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 +262 -239
- package/dist/index.js.map +4 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -406,6 +406,13 @@ export interface WhatsappIconProps extends React.SVGProps<SVGSVGElement> {
|
|
|
406
406
|
height?: number | string;
|
|
407
407
|
}
|
|
408
408
|
export declare const WhatsappIcon: ({ size, color, width, height, ...rest }: WhatsappIconProps) => React.JSX.Element;
|
|
409
|
+
export interface MenuIconProps extends React.SVGProps<SVGSVGElement> {
|
|
410
|
+
size?: number | string;
|
|
411
|
+
color?: string;
|
|
412
|
+
width?: number | string;
|
|
413
|
+
height?: number | string;
|
|
414
|
+
}
|
|
415
|
+
export declare const MenuIcon: ({ size, color, width, height, ...rest }: MenuIconProps) => React.JSX.Element;
|
|
409
416
|
export interface ArrowLeftIcon300Props extends React.SVGProps<SVGSVGElement> {
|
|
410
417
|
size?: number | string;
|
|
411
418
|
color?: string;
|