reykit 1.0.181 → 1.0.182
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.js +929 -923
- package/dist/src/component/Text.d.ts +8 -1
- package/package.json +1 -1
|
@@ -4,5 +4,12 @@ import { ReactNode } from 'react';
|
|
|
4
4
|
*
|
|
5
5
|
* @param icon - Icon content.
|
|
6
6
|
* @param text - Text content.
|
|
7
|
+
* @param mobileHideIcon - Whether hide icon content on mobile devices.
|
|
8
|
+
* @param mobileHideText - Whether hide text content on mobile devices.
|
|
7
9
|
*/
|
|
8
|
-
export declare function IconText(icon
|
|
10
|
+
export declare function IconText({ icon, text, hideMobileIcon, hideMobileText }: {
|
|
11
|
+
icon: ReactNode;
|
|
12
|
+
text: string | ReactNode;
|
|
13
|
+
hideMobileIcon?: boolean;
|
|
14
|
+
hideMobileText?: boolean;
|
|
15
|
+
}): import("react/jsx-runtime").JSX.Element;
|