import { ReactNode } from 'react'; import clsx from 'clsx'; interface Props { children: ReactNode; className?: string; } export function ActionBarShell({ children, className }: Props) { return (
{children}
); }