analytica-frontend-lib 1.1.74 → 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.
@@ -1026,6 +1026,7 @@ var CardQuestions = forwardRef(
1026
1026
  className,
1027
1027
  onClickButton,
1028
1028
  valueButton,
1029
+ label = "00",
1029
1030
  ...props
1030
1031
  }, ref) => {
1031
1032
  const isDone = state === "done";
@@ -1055,7 +1056,7 @@ var CardQuestions = forwardRef(
1055
1056
  ),
1056
1057
  /* @__PURE__ */ jsxs7("span", { className: "flex flex-row items-center gap-1 text-text-700 text-xs", children: [
1057
1058
  isDone ? "Nota" : "Sem nota",
1058
- isDone && /* @__PURE__ */ jsx9(Badge_default, { size: "medium", action: "success", children: "00" })
1059
+ isDone && /* @__PURE__ */ jsx9(Badge_default, { size: "medium", action: "success", children: label })
1059
1060
  ] })
1060
1061
  ] })
1061
1062
  ] }),