UNPKG

@project44-manifest/react

Version:

Manifest Design System react components

15 lines (13 loc) 332 B
import type { TransitionProps } from '../Transition/Transition.types'; export interface CollapseProps extends Omit<TransitionProps, 'children'> { /** * Content of the transitioned element. */ children: React.ReactNode; /** * The animation duration in miliseconds. * * @default 200 */ duration?: number; }