import clsx from 'clsx' import { type ComponentProps, type HTMLAttributes, type PropsWithChildren, forwardRef, } from 'react' export const OuterContainer = forwardRef< HTMLDivElement, HTMLAttributes >(function OuterContainer({ className, children, ...props }, ref) { return (
{children}
) }) export const InnerContainer = forwardRef< HTMLDivElement, HTMLAttributes >(function InnerContainer({ className, children, ...props }, ref) { return (
{children}
) }) export const Container: ReturnType< typeof forwardRef> > = forwardRef(function Container( { children, ...props }: PropsWithChildren>, ref, ) { return ( {children} ) })