export function AuthLayoutShell({ children, Logo, }: React.PropsWithChildren<{ Logo?: React.ComponentType; }>) { return (
{Logo ? : null}
{children}
); }