@nice2dev/icons 1.0.20 → 1.0.22
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.
|
@@ -158,17 +158,17 @@ interface QuickEffectProps {
|
|
|
158
158
|
/**
|
|
159
159
|
* Quick hover lift effect wrapper
|
|
160
160
|
*/
|
|
161
|
-
export declare function HoverLift({ children, duration, disabled, className, style, }: QuickEffectProps):
|
|
161
|
+
export declare function HoverLift({ children, duration, disabled, className, style, }: QuickEffectProps): React.JSX.Element;
|
|
162
162
|
/**
|
|
163
163
|
* Quick click pop effect wrapper
|
|
164
164
|
*/
|
|
165
|
-
export declare function ClickPop({ children, duration, disabled, className, style, }: QuickEffectProps):
|
|
165
|
+
export declare function ClickPop({ children, duration, disabled, className, style, }: QuickEffectProps): React.JSX.Element;
|
|
166
166
|
/**
|
|
167
167
|
* Quick ripple effect wrapper
|
|
168
168
|
*/
|
|
169
|
-
export declare function ClickRipple({ children, duration, disabled, className, style, }: QuickEffectProps):
|
|
169
|
+
export declare function ClickRipple({ children, duration, disabled, className, style, }: QuickEffectProps): React.JSX.Element;
|
|
170
170
|
/**
|
|
171
171
|
* Quick focus glow effect wrapper
|
|
172
172
|
*/
|
|
173
|
-
export declare function FocusGlow({ children, disabled, className, style }: QuickEffectProps):
|
|
173
|
+
export declare function FocusGlow({ children, disabled, className, style }: QuickEffectProps): React.JSX.Element;
|
|
174
174
|
export {};
|
package/dist/types/rsc.d.ts
CHANGED
|
@@ -131,7 +131,7 @@ export interface CreateIconRSCOptions {
|
|
|
131
131
|
* ```
|
|
132
132
|
*/
|
|
133
133
|
export declare function createIconRSC(options: CreateIconRSCOptions): {
|
|
134
|
-
(props: NtdIconRSCProps): import("react
|
|
134
|
+
(props: NtdIconRSCProps): import("react").JSX.Element;
|
|
135
135
|
displayName: string;
|
|
136
136
|
};
|
|
137
137
|
/**
|
|
@@ -85,7 +85,7 @@ export interface SmilAnimationWrapperProps {
|
|
|
85
85
|
* </svg>
|
|
86
86
|
* ```
|
|
87
87
|
*/
|
|
88
|
-
export declare function SmilAnimationWrapper({ animation, duration, repeatCount, easing, delay, center, children, }: SmilAnimationWrapperProps):
|
|
88
|
+
export declare function SmilAnimationWrapper({ animation, duration, repeatCount, easing, delay, center, children, }: SmilAnimationWrapperProps): React.JSX.Element;
|
|
89
89
|
/**
|
|
90
90
|
* Creates a SMIL animation definition that can be referenced by id.
|
|
91
91
|
* Useful for applying the same animation to multiple elements.
|
package/package.json
CHANGED