import { forwardRef } from 'react' import clsx from 'clsx' const OuterContainer = forwardRef(function OuterContainer( { className, children, ...props }, ref ) { return (
{children}
) }) const InnerContainer = forwardRef(function InnerContainer( { className, children, ...props }, ref ) { return (
{children}
) }) export const Container = forwardRef(function Container( { children, ...props }, ref ) { return ( {children} ) }) Container.Outer = OuterContainer Container.Inner = InnerContainer