UNPKG

rsuite

Version:

A suite of react components

12 lines (11 loc) 419 B
import { WithAsProps, RsRefForwardingComponent } from '../@types/common'; import { CloseButtonLocale } from '../locales'; export interface CloseButtonProps extends WithAsProps { /** Custom locale */ locale?: CloseButtonLocale; } /** * Close button for components such as Message and Notification. */ declare const CloseButton: RsRefForwardingComponent<'button', CloseButtonProps>; export default CloseButton;