import {forwardRef, ReactNode} from 'react' import clsx from 'clsx' type Container = { className?: string children: ReactNode style?: Object } export const OuterContainer = forwardRef(function OuterContainer( {className, children, ...props}, ref ) { return (
{children}
) }) export const InnerContainer = forwardRef(function InnerContainer( {className, children, ...props}, ref ) { return (
{children}
) }) export const Container = forwardRef(function Container( {children, ...props}, ref ) { return ( {children} ) })