@surveycake/rc
Version:
react component of surveycake
19 lines (18 loc) • 426 B
TypeScript
import { FC } from 'react';
export interface AnimateHeightProps {
/**
* transition-duration
*/
duration?: number | 'auto';
/**
* transition-timing-function
*/
timingFunction?: string;
height?: number | 'auto';
/**
* disable transition
*/
animateDisabled?: boolean;
}
declare const AnimateHeight: FC<AnimateHeightProps>;
export default AnimateHeight;