UNPKG

@gear-js/react-hooks

Version:
8 lines (7 loc) 299 B
import { ReactNode } from 'react'; import { TransitionProps } from 'react-transition-group/Transition'; type Props = Partial<TransitionProps> & { children: ReactNode; }; declare const Transition: ({ children, ...props }: Props) => import("react/jsx-runtime").JSX.Element; export { Transition };