mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-04 12:29:16 -05:00
14 lines
310 B
TypeScript
14 lines
310 B
TypeScript
import type { ReactNode } from 'react';
|
|
|
|
interface Props {
|
|
children: ReactNode;
|
|
}
|
|
|
|
export function EmptyStateText({ children }: Props) {
|
|
return (
|
|
<div className="rounded-lg border border-dashed border-highlight h-full text-gray-400 flex items-center justify-center">
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|