mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-14 21:23:40 +01:00
10 lines
239 B
TypeScript
10 lines
239 B
TypeScript
import type { ReactNode } from 'react';
|
|
|
|
interface Props {
|
|
children: ReactNode;
|
|
}
|
|
|
|
export function EmptyStateText({ children }: Props) {
|
|
return <div className="h-full text-gray-400 flex items-center justify-center">{children}</div>;
|
|
}
|