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 (
{children}
); }