@goodhood-web/ui 4.9.0-development.1 → 4.9.0-development.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.
- package/index.js +1 -1
- package/index.mjs +4 -4
- package/lib/Atoms/Divider/Divider.d.ts +1 -1
- package/lib/Atoms/Divider/Divider.types.d.ts +1 -0
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -16994,13 +16994,13 @@ const IE = "_bodyText_1t3kz_146", NE = "_bodyText__textButton_1t3kz_175", BE = "
|
|
|
16994
16994
|
}, AM = "_dividerContainer_c03zd_146", zM = "_dividerLine_c03zd_152", Yo = {
|
|
16995
16995
|
dividerContainer: AM,
|
|
16996
16996
|
dividerLine: zM
|
|
16997
|
-
}, H5 = ({
|
|
16997
|
+
}, H5 = ({ className: t, offsetLeft: e = 0, offsetRight: n = 0 }) => /* @__PURE__ */ m("div", { className: Yo.dividerContainer, children: /* @__PURE__ */ m(
|
|
16998
16998
|
"div",
|
|
16999
16999
|
{
|
|
17000
|
-
className: Yo.dividerLine,
|
|
17000
|
+
className: R(Yo.dividerLine, t),
|
|
17001
17001
|
style: {
|
|
17002
|
-
marginLeft: `${
|
|
17003
|
-
marginRight: `${
|
|
17002
|
+
marginLeft: `${e}px`,
|
|
17003
|
+
marginRight: `${n}px`
|
|
17004
17004
|
},
|
|
17005
17005
|
role: "separator"
|
|
17006
17006
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { DividerProps } from './Divider.types';
|
|
2
|
-
declare const Divider: ({ offsetLeft, offsetRight }: DividerProps) => import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
declare const Divider: ({ className, offsetLeft, offsetRight }: DividerProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export default Divider;
|