UNPKG

@themesberg/react-bootstrap

Version:

Unofficial release of the react-bootstrap library with Bootstrap 5 components built with React

9 lines (8 loc) 407 B
import React from 'react'; import { BsPrefixRefForwardingComponent, BsPrefixPropsWithChildren } from './helpers'; export interface AccordionItemProps extends BsPrefixPropsWithChildren, React.HTMLAttributes<HTMLElement> { eventKey: string; } declare type AccordionItem = BsPrefixRefForwardingComponent<'div', AccordionItemProps>; declare const AccordionItem: AccordionItem; export default AccordionItem;