@datatechsolutions/ui 2.8.1 → 2.8.2

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.d.mts CHANGED
@@ -2275,8 +2275,10 @@ type PageEmptyStateProps = {
2275
2275
  title: string;
2276
2276
  message: string;
2277
2277
  iconName: string;
2278
+ /** Override the default icon with a custom React element */
2279
+ customIcon?: React.ReactNode;
2278
2280
  };
2279
- declare function PageEmptyState({ title, message, iconName }: PageEmptyStateProps): react_jsx_runtime.JSX.Element;
2281
+ declare function PageEmptyState({ title, message, iconName, customIcon }: PageEmptyStateProps): react_jsx_runtime.JSX.Element;
2280
2282
 
2281
2283
  type PageLoadingStateProps = {
2282
2284
  label?: string;
package/dist/index.d.ts CHANGED
@@ -2275,8 +2275,10 @@ type PageEmptyStateProps = {
2275
2275
  title: string;
2276
2276
  message: string;
2277
2277
  iconName: string;
2278
+ /** Override the default icon with a custom React element */
2279
+ customIcon?: React.ReactNode;
2278
2280
  };
2279
- declare function PageEmptyState({ title, message, iconName }: PageEmptyStateProps): react_jsx_runtime.JSX.Element;
2281
+ declare function PageEmptyState({ title, message, iconName, customIcon }: PageEmptyStateProps): react_jsx_runtime.JSX.Element;
2280
2282
 
2281
2283
  type PageLoadingStateProps = {
2282
2284
  label?: string;