import clsx from 'clsx'; /** * Wraps content in a div with a centered text. */ export function NoData({ className, children, ...restProps }: React.ComponentProps<'div'>) { return (
{children}
); }