UNPKG

@keen.io/ui-core

Version:

Keen visual components library

11 lines (10 loc) 278 B
import React, { FC } from 'react'; declare type Props = { title: string; isOpen?: boolean; onChange?: (isOpen: boolean) => void; maxHeight?: number; children: React.ReactNode; }; export declare const Accordion: FC<Props>; export default Accordion;