analytica-frontend-lib 1.1.75 → 1.1.76

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.
@@ -1033,6 +1033,7 @@ var CardQuestions = forwardRef(
1033
1033
  className,
1034
1034
  onClickButton,
1035
1035
  valueButton,
1036
+ label = "00",
1036
1037
  ...props
1037
1038
  }, ref) => {
1038
1039
  const isDone = state === "done";
@@ -1062,7 +1063,7 @@ var CardQuestions = forwardRef(
1062
1063
  ),
1063
1064
  /* @__PURE__ */ jsxs7("span", { className: "flex flex-row items-center gap-1 text-text-700 text-xs", children: [
1064
1065
  isDone ? "Nota" : "Sem nota",
1065
- isDone && /* @__PURE__ */ jsx9(Badge_default, { size: "medium", action: "success", children: "00" })
1066
+ isDone && /* @__PURE__ */ jsx9(Badge_default, { size: "medium", action: "success", children: label })
1066
1067
  ] })
1067
1068
  ] })
1068
1069
  ] }),