Files
yaak/src-web/components/EmptyStateText.tsx
Gregory Schier 56a30aa7c4 Panel icons
2023-03-25 23:29:04 -07:00

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