UNPKG

740 BTypeScriptView Raw
1import * as React from 'react';
2export interface AccordionToggleProps extends React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement> {
3 /** Content rendered inside the Accordion toggle */
4 children?: React.ReactNode;
5 /** Additional classes added to the Accordion Toggle */
6 className?: string;
7 /** Flag to show if the expanded content of the Accordion item is visible */
8 isExpanded?: boolean;
9 /** Identify the Accordion toggle number */
10 id: string;
11 /** Container to override the default for toggle */
12 component?: React.ElementType;
13}
14export declare const AccordionToggle: React.FunctionComponent<AccordionToggleProps>;
15//# sourceMappingURL=AccordionToggle.d.ts.map
\No newline at end of file