import { clx } from "@medusajs/ui" import { Transition, motion } from "motion/react" type LogoBoxProps = { className?: string checked?: boolean containerTransition?: Transition pathTransition?: Transition } export const LogoBox = ({ className, checked, containerTransition = { duration: 0.8, delay: 0.5, ease: [0, 0.71, 0.2, 1.01], }, pathTransition = { duration: 0.8, delay: 0.6, ease: [0.1, 0.8, 0.2, 1.01], }, }: LogoBoxProps) => { return (
{checked && ( )}
) }