UNPKG

@visa/nova-react

Version:

Visa Product Design System Nova React library. Compatible with React ^19.

12 lines (11 loc) 461 B
import { type SurfaceProperties } from '../surface'; export type PanelContentProperties = SurfaceProperties; /** * Container for all panel content, included heading and body. * @docs {@link https://design.visa.com/components/panel/?code_library=react | See Docs} */ declare const PanelContent: { ({ className, ...remainingProps }: PanelContentProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default PanelContent;