@visa/nova-react
Version:
Visa Product Design System Nova React library
13 lines (12 loc) • 721 B
TypeScript
import { ForwardedRef } from 'react';
import { MessageCloseButtonProperties } from '../message-close-button';
export type DialogCloseButtonProperties = MessageCloseButtonProperties;
/**
* Button that appears in dialog pop-up windows to close them.
* @docs {@link https://design.visa.com/react/components/dialog | See Docs}
*/
declare const _default: <HTMLElementType = HTMLButtonElement>(props: {
children?: import("react").ReactNode | import("react").ReactNode[];
ref?: ForwardedRef<HTMLElementType> | undefined;
} & import("react").AllHTMLAttributes<HTMLElementType> & (import("react").SVGAttributes<HTMLElementType> & MessageCloseButtonProperties)) => import("react").ReactElement;
export default _default;