UNPKG

rsuite

Version:

A suite of react components

15 lines (14 loc) 513 B
import React from 'react'; import { BoxProps } from '../internals/Box'; export interface PanelHeaderProps extends BoxProps, Omit<React.HTMLAttributes<HTMLHeadingElement>, 'color'> { caretAs?: React.ElementType; collapsible?: boolean; disabled?: boolean; expanded?: boolean; role?: string; bodyId?: string; buttonId?: string; onClickButton?: (event: React.MouseEvent) => void; } declare const PanelHeader: (props: PanelHeaderProps) => React.JSX.Element; export default PanelHeader;