import clsx from 'clsx'; import { Children, PropsWithChildren } from 'react'; interface Props { className?: string; } export function TableActions({ children, className, }: PropsWithChildren) { if (Children.count(children) === 0) { return null; } return
{children}
; }