import clsx from 'clsx'; import { type Div } from '@/components/props'; /** * Wraps content in a div with a centered text. */ export function NoData({ className, children, ...restProps }: Div) { return (
{children}
); }