reykit 1.0.201 → 1.0.202
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 +1 -1
- package/dist/src/component/Text.d.ts +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -49973,7 +49973,7 @@ function xk({
|
|
|
49973
49973
|
d && m || (typeof i == "string" ? /* @__PURE__ */ E.jsx("span", { className: "whitespace-nowrap", children: i }) : i)
|
|
49974
49974
|
] });
|
|
49975
49975
|
}
|
|
49976
|
-
function Sk({
|
|
49976
|
+
function Sk({ children: a }) {
|
|
49977
49977
|
return /* @__PURE__ */ E.jsx(Wj, { remarkPlugins: [e6], children: a });
|
|
49978
49978
|
}
|
|
49979
49979
|
function Ek({
|
|
@@ -16,8 +16,8 @@ export declare function IconText({ icon, text, hideMobileIcon, hideMobileText }:
|
|
|
16
16
|
/**
|
|
17
17
|
* Text component of support Markdown.
|
|
18
18
|
*
|
|
19
|
-
* @param
|
|
19
|
+
* @param children - Markdown text.
|
|
20
20
|
*/
|
|
21
|
-
export declare function MarkdownText({
|
|
22
|
-
|
|
21
|
+
export declare function MarkdownText({ children }: {
|
|
22
|
+
children: string;
|
|
23
23
|
}): import("react/jsx-runtime").JSX.Element;
|