UNPKG

@useloops/design-system

Version:

The official React based Loops design system

14 lines (11 loc) 305 B
import { FunctionComponent, ReactNode } from 'react'; interface AccordionProps { heading?: string; items?: { heading: string; body: ReactNode; }[]; } declare const Accordion: FunctionComponent<AccordionProps>; export { Accordion as default }; export type { AccordionProps };