import type { ReactNode } from 'react' import { forwardRef } from 'react' import { classNames } from '../index' export interface ContentProps { className?: string children: ReactNode | ReactNode[] } export const Content = forwardRef(({ className, children }, ref) => { return (
{children}
) })