import { cn } from "@/lib/utils"; import { PropsWithChildren } from "react"; export const EmptyStateWrapper = ( props: PropsWithChildren<{ height: `${`h-[${number}px]`}`; }> ) => { return (
{props.children}
); };