UNPKG

@patternfly/react-core

Version:

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

14 lines 611 B
import * as React from 'react'; import { ButtonProps } from '../Button'; export interface AlertActionCloseButtonProps extends ButtonProps { /** Additional classes added to the AlertActionCloseButton */ className?: string; /** A callback for when the close button is clicked */ onClose?: () => void; /** Aria Label for the Close button */ 'aria-label'?: string; /** Variant Label for the Close button */ variantLabel?: string; } export declare const AlertActionCloseButton: React.FunctionComponent<AlertActionCloseButtonProps>; //# sourceMappingURL=AlertActionCloseButton.d.ts.map