Files
yaak-mountain-loop/src-web/components/EmptyStateText.tsx
Gregory Schier 4f9a7e9c88 2024.5.0 (#39)
2024-06-03 14:08:24 -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>
);
}