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