@wordpress/components
Version:
UI components for WordPress.
13 lines • 423 B
TypeScript
/// <reference types="react" />
/**
* Internal dependencies
*/
import type { PanelHeaderProps } from './types';
/**
* `PanelHeader` renders the header for the `Panel`.
* This is used by the `Panel` component under the hood,
* so it does not typically need to be used.
*/
declare function PanelHeader({ label, children }: PanelHeaderProps): JSX.Element;
export default PanelHeader;
//# sourceMappingURL=header.d.ts.map