@minoru/react-dnd-treeview
Version:
A draggable / droppable React-based treeview component.
15 lines (14 loc) • 381 B
TypeScript
import React from "react";
import type { Target, Tween } from "framer-motion";
interface AnimateHeightProps {
isVisible: boolean;
ease?: Tween["ease"];
duration?: number;
variants?: {
open: Target;
close: Target;
};
children: React.ReactNode;
}
export declare function AnimateHeight(props: AnimateHeightProps): React.JSX.Element;
export {};