const Root = ({className, children, href}: React.PropsWithChildren & {href:string,className?: string}) => { return {children} } const Background = ({className, children}: React.PropsWithChildren & {className?: string}) => { return
{children}
} const Foreground = ({className, children}: React.PropsWithChildren & {className?: string}) => { return
{children}
} export { Root, Background, Foreground }