diff --git a/src/components/ui.tsx b/src/components/ui.tsx index 52d4990..d2c6ad6 100644 --- a/src/components/ui.tsx +++ b/src/components/ui.tsx @@ -152,3 +152,30 @@ export function SectionTitle({ icon, title, description }: { icon?: ReactNode; t ) } + +export function Skeleton({ className, ...props }: ComponentPropsWithoutRef<'div'>) { + return
+} + +export function EmptyState({ + icon, + title, + description, + action, + className, +}: { + icon?: ReactNode + title: string + description?: string + action?: ReactNode + className?: string +}) { + return ( +{description}
} + {action &&