UNPKG

611 BTypeScriptView Raw
1import * as React from 'react';
2import { ButtonProps } from '../Button';
3export interface AlertActionCloseButtonProps extends ButtonProps {
4 /** Additional classes added to the AlertActionCloseButton */
5 className?: string;
6 /** A callback for when the close button is clicked */
7 onClose?: () => void;
8 /** Aria Label for the Close button */
9 'aria-label'?: string;
10 /** Variant Label for the Close button */
11 variantLabel?: string;
12}
13export declare const AlertActionCloseButton: React.FunctionComponent<AlertActionCloseButtonProps>;
14//# sourceMappingURL=AlertActionCloseButton.d.ts.map
\No newline at end of file