UNPKG

mt-flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

8 lines (7 loc) 296 B
import type { FC, PropsWithChildren } from 'react'; import type { AccordionProps } from './Accordion'; export interface AccordionPanelProps extends PropsWithChildren<AccordionProps> { isOpen?: boolean; setOpen?: () => void; } export declare const AccordionPanel: FC<AccordionPanelProps>;