@movable/ui 3.12.0 → 3.14.0-alpha.0

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.
@@ -9,7 +9,7 @@ type ActionType = {
9
9
  export type InkEmptyStateProps = {
10
10
  title?: string;
11
11
  description?: ReactNode;
12
- action?: ActionType;
12
+ action?: ActionType | JSX.Element;
13
13
  variant: VariantType;
14
14
  icon?: JSX.Element | OverridableComponent<SvgIconTypeMap<object, 'svg'>>;
15
15
  isLongLoading?: boolean;
package/lib/index.d.ts CHANGED
@@ -525,7 +525,7 @@ export declare function InkEmptyState({ title, description, action, variant, ico
525
525
  declare type InkEmptyStateProps = {
526
526
  title?: string;
527
527
  description?: ReactNode;
528
- action?: ActionType;
528
+ action?: ActionType | JSX.Element;
529
529
  variant: VariantType;
530
530
  icon?: JSX.Element | OverridableComponent<SvgIconTypeMap<object, 'svg'>>;
531
531
  isLongLoading?: boolean;