UNPKG

@patternfly/react-core

Version:

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

14 lines 616 B
import * as React from 'react'; import { ButtonProps } from '../Button'; export interface AlertToggleExpandButtonProps extends ButtonProps { /** Aria label for the toggle button */ 'aria-label'?: string; /** A callback for when the toggle button is clicked */ onToggleExpand?: () => void; /** Flag to indicate if the content is expanded */ isExpanded?: boolean; /** Variant label for the toggle button */ variantLabel?: string; } export declare const AlertToggleExpandButton: React.FunctionComponent<AlertToggleExpandButtonProps>; //# sourceMappingURL=AlertToggleExpandButton.d.ts.map