Animate Height
A component that smoothly animates height changes for dynamic content.
Smoothly animate height transitions when content changes.
Usage
import { AnimateHeight } from "@delphi/ui";
export function Example() {
return (
<AnimateHeight>
<div>Content that may change height</div>
</AnimateHeight>
);
}