dfh-ui-library 1.14.41 → 1.14.42
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/cjs/index.css +1 -1
- package/dist/cjs/index.css.map +1 -1
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/Media/Icon/IconV2.d.ts +3 -3
- package/dist/esm/index.css +1 -1
- package/dist/esm/index.css.map +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/Media/Icon/IconV2.d.ts +3 -3
- package/dist/index.d.ts +3 -3
- package/package.json +1 -1
|
@@ -10,10 +10,10 @@ type IconProps = {
|
|
|
10
10
|
variant?: IconVariant;
|
|
11
11
|
strokeWidth?: number;
|
|
12
12
|
absoluteStrokeWidth?: boolean;
|
|
13
|
-
onClick?:
|
|
13
|
+
onClick?: React.MouseEventHandler<SVGSVGElement>;
|
|
14
14
|
additionalClasses?: string;
|
|
15
|
-
onMouseEnter?:
|
|
16
|
-
onMouseLeave?:
|
|
15
|
+
onMouseEnter?: React.MouseEventHandler<SVGSVGElement>;
|
|
16
|
+
onMouseLeave?: React.MouseEventHandler<SVGSVGElement>;
|
|
17
17
|
};
|
|
18
18
|
declare const IconV2: React.FC<IconProps>;
|
|
19
19
|
export default IconV2;
|
package/dist/index.d.ts
CHANGED
|
@@ -1840,10 +1840,10 @@ type IconProps = {
|
|
|
1840
1840
|
variant?: IconVariant;
|
|
1841
1841
|
strokeWidth?: number;
|
|
1842
1842
|
absoluteStrokeWidth?: boolean;
|
|
1843
|
-
onClick?:
|
|
1843
|
+
onClick?: React__default.MouseEventHandler<SVGSVGElement>;
|
|
1844
1844
|
additionalClasses?: string;
|
|
1845
|
-
onMouseEnter?:
|
|
1846
|
-
onMouseLeave?:
|
|
1845
|
+
onMouseEnter?: React__default.MouseEventHandler<SVGSVGElement>;
|
|
1846
|
+
onMouseLeave?: React__default.MouseEventHandler<SVGSVGElement>;
|
|
1847
1847
|
};
|
|
1848
1848
|
declare const IconV2: React__default.FC<IconProps>;
|
|
1849
1849
|
|