import { Transition } from '@headlessui/react' import { CSSProperties, ReactNode } from 'react' const transitionEnterStyle = 'transition-all ease-out duration-500' const transitionExitStyle = 'transition-all ease-in duration-300' export const EnterRightExitLeft = ({ children, className, show, style, }: { children: ReactNode className?: string show: boolean style?: CSSProperties }) => ( {children} ) export const EnterBottomExitBottom = ({ children, className, show, }: { children: ReactNode className?: string show: boolean }) => ( {children} ) export const FadeInFadeOut = ({ children, className, show, }: { children: ReactNode className?: string show: boolean }) => ( {children} ) export const FadeInList = ({ as = 'div', children, index, }: { as?: any children: ReactNode index: number }) => ( {children} )