@hero-design/rn 8.99.0 → 8.99.1

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.
@@ -10,7 +10,7 @@ interface EmptyProps {
10
10
  /**
11
11
  * Empty's title.
12
12
  */
13
- title: string;
13
+ title: string | ReactElement;
14
14
  /**
15
15
  * Empty's description.
16
16
  */
@@ -17,7 +17,7 @@ interface ErrorProps extends ViewProps {
17
17
  /**
18
18
  * Title of the error
19
19
  */
20
- title: string;
20
+ title: string | ReactElement;
21
21
  /**
22
22
  * Description of the error
23
23
  */
@@ -11,7 +11,7 @@ export interface SuccessProps extends ViewProps {
11
11
  /**
12
12
  * Success's title.
13
13
  */
14
- title: string;
14
+ title: string | ReactElement;
15
15
  /**
16
16
  * Success's description.
17
17
  */