UNPKG

@fchh/fcos-suite-ui

Version:

Reusable UI components based on React and TailwindCSS for the Fab City OS Suite (initially funded by the Interfacer EU project).

10 lines (9 loc) 359 B
import { PropsWithChildren } from 'react'; export interface AccordionItemProps { title: string; open?: boolean; className?: string; id?: string; icon?: React.ReactNode; } export declare function AccordionItem({ title, children, open, className, id, icon, }: PropsWithChildren<AccordionItemProps>): import("react/jsx-runtime").JSX.Element;