UNPKG

@patternfly/react-core

Version:

This library provides a set of common React components for use with the PatternFly reference implementation.

15 lines 643 B
/// <reference types="react" /> export interface PanelProps extends React.HTMLProps<HTMLDivElement> { /** Content rendered inside the panel */ children?: React.ReactNode; /** Class to add to outer div */ className?: string; /** Adds panel variant styles */ variant?: 'raised' | 'bordered' | 'secondary'; /** Flag to add scrollable styling to the panel */ isScrollable?: boolean; /** @hide Forwarded ref */ innerRef?: React.Ref<any>; } export declare const Panel: import("react").ForwardRefExoticComponent<Omit<PanelProps, "ref"> & import("react").RefAttributes<any>>; //# sourceMappingURL=Panel.d.ts.map