chakra-ui
Version:
Responsive and accessible React UI components built with React and Emotion
20 lines (15 loc) • 493 B
TypeScript
import { BoxProps } from "../Box";
import * as React from "react";
interface ICollapse {
isOpen?: boolean;
animateOpacity?: boolean;
onAnimationEnd?(props: { newHeight: number }): void;
onAnimationStart?(props: { newHeight: number }): void;
duration?: number;
collapsedHeight?: number;
}
export type CollapseProps = ICollapse &
BoxProps &
React.RefAttributes<HTMLDivElement>;
declare const Collapse: React.ForwardRefExoticComponent<CollapseProps>;
export default Collapse;