@agentiffai/design 1.3.25 → 1.3.26

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 CHANGED
@@ -585,7 +585,7 @@ var StyledExecutions = styled50__default.default.span`
585
585
  `;
586
586
  function formatPrice(price, billingInterval = "monthly") {
587
587
  if (price == null) return "Free";
588
- if (billingInterval === "annual") return `$${(price * 12).toFixed(2)}/year`;
588
+ if (billingInterval === "annual") return `$${(price * 12 * 0.7).toFixed(2)}/year`;
589
589
  return `$${price.toFixed(2)}/mo`;
590
590
  }
591
591
  function TrialPlanCard({
@@ -2333,7 +2333,7 @@ DarkNotificationCard.displayName = "DarkNotificationCard";
2333
2333
  var Container7 = styled50__default.default.div`
2334
2334
  width: 100%;
2335
2335
  height: 100%;
2336
- background-color: transparent;
2336
+ background-color: ${tokens.colors.background.dark};
2337
2337
  color: ${tokens.colors.text.primary};
2338
2338
  display: flex;
2339
2339
  flex-direction: column;