mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-15 16:23:25 +01:00
23 lines
500 B
TypeScript
23 lines
500 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-border-subtle',
|
|
'h-full py-2 text-text-subtlest flex items-center justify-center italic',
|
|
)}
|
|
>
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|