@woovi/ui 6.9.5 → 6.9.6

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.
@@ -0,0 +1,15 @@
1
+ import type { ReactNode } from "react";
2
+ import { type StackProps } from "@mui/material";
3
+ export type EmptyStateButton = {
4
+ label: string;
5
+ onClick: () => void;
6
+ };
7
+ export type EmptyStateProps = StackProps & {
8
+ icon?: ReactNode;
9
+ title?: string;
10
+ description?: ReactNode;
11
+ primaryButton?: EmptyStateButton;
12
+ secondaryButton?: EmptyStateButton;
13
+ };
14
+ declare const EmptyState: ({ sx, icon, title, description, primaryButton, secondaryButton, ...rest }: EmptyStateProps) => ReactNode;
15
+ export default EmptyState;
@@ -0,0 +1,3 @@
1
+ import type { ReactNode } from "react";
2
+ declare const EmptyStateDefaultIcon: () => ReactNode;
3
+ export default EmptyStateDefaultIcon;