Files
yaak/src-web/components/EmptyStateText.tsx
2024-02-22 00:49:22 -08:00

14 lines
315 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 py-2 text-gray-400 flex items-center justify-center">
{children}
</div>
);
}