@dt-dds/react-icon 1.0.0-beta.62 → 1.0.0-beta.63
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/CHANGELOG.md +6 -0
- package/dist/index.d.mts +4 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -11,7 +11,10 @@ interface IconProps extends Omit<BaseProps, 'children'> {
|
|
|
11
11
|
size?: ComponentSize;
|
|
12
12
|
variant?: Variant;
|
|
13
13
|
}
|
|
14
|
-
declare const Icon:
|
|
14
|
+
declare const Icon: {
|
|
15
|
+
({ code, color, dataTestId, size, style, variant, }: IconProps): react_jsx_runtime.JSX.Element;
|
|
16
|
+
displayName: string;
|
|
17
|
+
};
|
|
15
18
|
|
|
16
19
|
declare module '@emotion/react' {
|
|
17
20
|
interface Theme extends CustomTheme {
|
package/dist/index.d.ts
CHANGED
|
@@ -11,7 +11,10 @@ interface IconProps extends Omit<BaseProps, 'children'> {
|
|
|
11
11
|
size?: ComponentSize;
|
|
12
12
|
variant?: Variant;
|
|
13
13
|
}
|
|
14
|
-
declare const Icon:
|
|
14
|
+
declare const Icon: {
|
|
15
|
+
({ code, color, dataTestId, size, style, variant, }: IconProps): react_jsx_runtime.JSX.Element;
|
|
16
|
+
displayName: string;
|
|
17
|
+
};
|
|
15
18
|
|
|
16
19
|
declare module '@emotion/react' {
|
|
17
20
|
interface Theme extends CustomTheme {
|
package/dist/index.js
CHANGED
package/dist/index.mjs
CHANGED