Files
yaak/src-web/components/EmptyStateText.tsx
2023-04-02 10:45:41 -07:00

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>
);
}