15 lines
368 B
TypeScript
15 lines
368 B
TypeScript
import clsx from 'clsx';
|
|
|
|
import { CProps } from '@/components/props';
|
|
|
|
/**
|
|
* Wraps content in a div with a centered text.
|
|
*/
|
|
export function NoData({ className, children, ...restProps }: CProps.Div) {
|
|
return (
|
|
<div className={clsx('p-3 flex flex-col items-center text-center select-none w-full', className)} {...restProps}>
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|