UNPKG

@breakaway/react-core

Version:

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

12 lines 529 B
import * as React from 'react'; import { OUIAProps } from '../../helpers'; export interface ModalBoxCloseButtonProps extends OUIAProps { /** Additional classes added to the close button. */ className?: string; /** A callback for when the close button is clicked. */ onClose?: () => void; /** Value to set the data-ouia-component-id.*/ ouiaId?: number | string; } export declare const ModalBoxCloseButton: React.FunctionComponent<ModalBoxCloseButtonProps>; //# sourceMappingURL=ModalBoxCloseButton.d.ts.map