import { Disclosure, DisclosurePanel } from "@headlessui/react"; import { LazyMotion, AnimatePresence, m, domAnimation } from "framer-motion"; import { type ComponentProps, type Ref, forwardRef } from "react"; export { DisclosureButton as AccordionButton } from "@headlessui/react"; export const Accordion = (props: Parameters[0]) => ( ); const AccordionPanelImpl = ( { style, ...props }: ComponentProps, ref: Ref, ) => ( {({ open }) => ( {open && ( )} )} ); export const AccordionPanel = forwardRef(AccordionPanelImpl);