UNPKG

@navikt/ds-react

Version:

React components from the Norwegian Labour and Welfare Administration.

17 lines (16 loc) 417 B
import React from "react"; export type Height = "auto" | number | `${number}%`; interface AnimateHeightProps extends React.HTMLAttributes<HTMLDivElement> { /** * @default 250ms */ duration?: number; /** * @default "ease" */ easing?: string; height: Height; innerClassName?: string; } declare const AnimateHeight: React.FC<AnimateHeightProps>; export default AnimateHeight;