UNPKG

react-accordion-simple

Version:

Simple to use react accordion wrapper component with style config.

14 lines (13 loc) 469 B
import { ReactNode } from "react"; interface AccordionComponentInterface { children: Array<ReactNode>; titlePadding: string; titleColour: string; titleBackgroundColour: string; contentPadding: string; contentColour: string; contentBackgroundColour: string; borderBottomColour: string; } declare const AccordionComponent: (props: AccordionComponentInterface) => import("react/jsx-runtime").JSX.Element; export default AccordionComponent;