@carbon/ibm-products
Version:
Carbon for IBM Products
54 lines • 1.76 kB
TypeScript
/**
* Copyright IBM Corp. 2026
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
*/
import React from 'react';
import PropTypes from 'prop-types';
/**
* ----------------
* PageHeaderContentPageActions
* ----------------
*/
export interface PageHeaderContentPageActionsProps {
/**
* Provide child elements to be rendered inside PageHeaderContentPageActions.
*/
children?: React.ReactNode;
/**
* Specify an optional className to be added to your PageHeaderContentPageActions
*/
className?: string;
/**
* The PageHeaderContent's page actions collapsible Menu button label
*/
menuButtonLabel?: string;
/**
* The PageHeaderContent's page actions
*/
actions?: React.ReactNode;
}
export declare const PageHeaderContentPageActions: {
({ className, children, menuButtonLabel, actions, ...other }: PageHeaderContentPageActionsProps): React.JSX.Element;
displayName: string;
propTypes: {
/**
* The PageHeaderContent's page actions
*/
actions: PropTypes.Requireable<NonNullable<any[] | PropTypes.ReactNodeLike>>;
/**
* Provide child elements to be rendered inside PageHeaderContentPageActions.
*/
children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
/**
* Specify an optional className to be added to your PageHeaderContentPageActions
*/
className: PropTypes.Requireable<string>;
/**
* The PageHeaderContent's collapsible Menu button label
*/
menuButtonLabel: PropTypes.Requireable<string>;
};
};
//# sourceMappingURL=PageHeaderContentPageActions.d.ts.map