@luscii-healthtech/web-ui 19.0.1 → 19.0.2
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.
|
@@ -3723,12 +3723,12 @@ const NavLayout = (props) => {
|
|
|
3723
3723
|
};
|
|
3724
3724
|
|
|
3725
3725
|
const Divider = (props) => {
|
|
3726
|
-
const darkTheme =
|
|
3727
|
-
const
|
|
3728
|
-
return React__namespace.default.createElement("div", { className: classNames__default.default("ui-border-color ui-block ui-w-full ui-border-b ui-border-solid last:ui-border-b-0", {
|
|
3729
|
-
"ui-border-color-divider":
|
|
3726
|
+
const darkTheme = Boolean(props.dark);
|
|
3727
|
+
const { className } = props, rest = __rest(props, ["className"]);
|
|
3728
|
+
return React__namespace.default.createElement("div", Object.assign({ className: classNames__default.default("ui-border-color ui-block ui-w-full ui-border-b ui-border-solid last:ui-border-b-0", className, {
|
|
3729
|
+
"ui-border-color-divider": !darkTheme,
|
|
3730
3730
|
"ui-border-slate-600": darkTheme
|
|
3731
|
-
}) });
|
|
3731
|
+
}) }, rest));
|
|
3732
3732
|
};
|
|
3733
3733
|
|
|
3734
3734
|
const NavMenuFooter = ({ text, subtext, visible = true }) => {
|