Files
yaak/src-web/components/EmptyStateText.tsx
2024-05-21 17:56:06 -07:00

23 lines
504 B
TypeScript

import classNames from 'classnames';
import type { ReactNode } from 'react';
import React from 'react';
interface Props {
children: ReactNode;
className?: string;
}
export function EmptyStateText({ children, className }: Props) {
return (
<div
className={classNames(
className,
'rounded-lg border border-dashed border-background-highlight',
'h-full py-2 text-fg-subtler flex items-center justify-center italic',
)}
>
{children}
</div>
);
}