rsuite
Version:
A suite of react components
14 lines (13 loc) • 464 B
TypeScript
import React from 'react';
import { WithAsProps, AnimationEventProps } from '../internals/types';
interface PanelBodyProps extends WithAsProps, AnimationEventProps, React.HTMLAttributes<HTMLDivElement> {
collapsible?: boolean;
expanded?: boolean;
bodyFill?: boolean;
scrollShadow?: boolean;
role?: string;
id?: string;
labelId?: string;
}
declare const PanelBody: (props: PanelBodyProps) => React.JSX.Element;
export default PanelBody;