UNPKG

@kadoui/react

Version:

Kadoui primitive components for React

10 lines 404 B
import { Dispatch, RefObject, SetStateAction } from "react"; export type ShowMoreContextT = { contentRef: RefObject<HTMLDivElement | null>; shouldShowMore: boolean; isShowMore: boolean; setIsShowMore: Dispatch<SetStateAction<boolean>>; maxHeight: number; }; export declare const ShowMoreContext: import("react").Context<ShowMoreContextT>; //# sourceMappingURL=ShowMoreContext.d.ts.map