dhre-ui-kit 0.0.118 → 0.0.120

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.
@@ -386,7 +386,7 @@ interface CustomSearchBarProps extends TextInputProps {
386
386
  onCrossIconPress?: () => void;
387
387
  handleOnChangeText?: (text: string) => void;
388
388
  searchIcon: React.ReactElement;
389
- rightIcon?: React.ReactElement;
389
+ rightIcon: React.ReactElement;
390
390
  disableBorderColor?: string;
391
391
  disablePlaceHolderStyle?: string;
392
392
  enablePlaceHolderStyle?: string;
@@ -754,7 +754,7 @@ const CustomButton = ({
754
754
  /* @__PURE__ */ React__default["default"].createElement(
755
755
  CustomText$1,
756
756
  {
757
- text: title,
757
+ text: "shashank",
758
758
  variant: titleVariant,
759
759
  style: [
760
760
  textStyle,
@@ -2190,11 +2190,11 @@ const CustomSearchBar = ({
2190
2190
  },
2191
2191
  style: crossIconStyle
2192
2192
  },
2193
- rightIcon ? React__default["default"].cloneElement(rightIcon, {
2193
+ React__default["default"].cloneElement(rightIcon, {
2194
2194
  // width: moderateScale(24),
2195
2195
  // height: moderateScale(24),
2196
2196
  style: [styles$l.crossIconStyle, crossIconStyle]
2197
- }) : null
2197
+ })
2198
2198
  )
2199
2199
  );
2200
2200
  };