analytica-frontend-lib 1.0.64 → 1.0.65
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/Card/index.js +3 -3
- package/dist/Card/index.js.map +1 -1
- package/dist/Card/index.mjs +3 -3
- package/dist/Card/index.mjs.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -4220,10 +4220,10 @@ var CardProgress = forwardRef12(
|
|
|
4220
4220
|
className: `
|
|
4221
4221
|
flex justify-center items-center [&>svg]:size-6 text-text-950
|
|
4222
4222
|
${isHorizontal ? "min-w-[80px] min-h-[80px] rounded-l-xl" : "min-h-[50px] w-full rounded-t-xl"}
|
|
4223
|
+
${!color.startsWith("#") ? `bg-${color}` : ""}
|
|
4223
4224
|
`,
|
|
4224
|
-
style: {
|
|
4225
|
-
|
|
4226
|
-
},
|
|
4225
|
+
style: color.startsWith("#") ? { backgroundColor: color } : void 0,
|
|
4226
|
+
"data-testid": "icon-container",
|
|
4227
4227
|
children: icon
|
|
4228
4228
|
}
|
|
4229
4229
|
),
|