dhre-ui-kit 0.0.131 → 0.0.134

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/lib/index.mjs CHANGED
@@ -2423,7 +2423,8 @@ const Topic = ({
2423
2423
  onPress,
2424
2424
  title,
2425
2425
  subTitle,
2426
- containterStyle
2426
+ containterStyle,
2427
+ subTitleStyle
2427
2428
  }) => {
2428
2429
  const { theme } = useTheme();
2429
2430
  return /* @__PURE__ */ React.createElement(
@@ -2441,7 +2442,7 @@ const Topic = ({
2441
2442
  /* @__PURE__ */ React.createElement(View, { style: styles$h.textContainer }, /* @__PURE__ */ React.createElement(View, { style: styles$h.paymentView }, statusImage && /* @__PURE__ */ React.createElement(View, null, React.cloneElement(statusImage)), subTitle && /* @__PURE__ */ React.createElement(
2442
2443
  CustomText$1,
2443
2444
  {
2444
- style: styles$h.subTitle,
2445
+ style: [styles$h.subTitle, subTitleStyle],
2445
2446
  text: subTitle,
2446
2447
  variant: FontStyle.L2_REGULAR,
2447
2448
  textColor: Theme.CONTENT_PRIMARY
@@ -2450,7 +2451,7 @@ const Topic = ({
2450
2451
  CustomText$1,
2451
2452
  {
2452
2453
  text: title,
2453
- variant: FontStyle.B3_REGULAR,
2454
+ variant: FontStyle.L1_REGULAR,
2454
2455
  textColor: Theme.CONTENT_PRIMARY
2455
2456
  }
2456
2457
  ))