import clsx from 'clsx';
import type { FC, HTMLAttributes, PropsWithChildren } from 'react';
import { authContent } from './share.css';
export const AuthContent: FC<
PropsWithChildren & HTMLAttributes
> = ({ children, className, ...otherProps }) => {
return (
{children}
);
};