UNPKG

@jigoooo/shared-ui

Version:

A reusable React component library and design system with TypeScript support, built on Vite for seamless integration and optimized performance.

9 lines (8 loc) 269 B
import { ReactNode } from 'react'; export declare function useAccordionItemContentMeasureHeight({ children, isOpen, }: { children: ReactNode; isOpen: boolean; }): { contentRef: import('react').RefObject<HTMLDivElement | null>; contentHeight: number; };