@julseb-lib/react 0.1.70 → 0.1.71
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.cjs +4 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +15 -12
- package/dist/index.d.ts +15 -12
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/types/components-props.d.cts +2 -0
- package/dist/types/components-props.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -66899,6 +66899,8 @@ var Breadcrumbs = ({
|
|
|
66899
66899
|
ref,
|
|
66900
66900
|
children,
|
|
66901
66901
|
separator = "/",
|
|
66902
|
+
accentColor = "primary",
|
|
66903
|
+
textColor = "font",
|
|
66902
66904
|
...rest
|
|
66903
66905
|
}) => {
|
|
66904
66906
|
const Element = element;
|
|
@@ -66909,6 +66911,8 @@ var Breadcrumbs = ({
|
|
|
66909
66911
|
ref,
|
|
66910
66912
|
className: clsx(
|
|
66911
66913
|
"flex flex-wrap items-center gap-2",
|
|
66914
|
+
genLinkColor[accentColor],
|
|
66915
|
+
genTextAllColor[textColor],
|
|
66912
66916
|
"breadcrumbs",
|
|
66913
66917
|
className
|
|
66914
66918
|
),
|