@themesberg/react-bootstrap
Version:
Unofficial release of the react-bootstrap library with Bootstrap 5 components built with React
12 lines (11 loc) • 514 B
TypeScript
import React from 'react';
import { CloseButtonVariant } from './CloseButton';
import { BsPrefixAndClassNameOnlyProps, BsPrefixRefForwardingComponent } from './helpers';
export interface ToastHeaderProps extends React.PropsWithChildren<BsPrefixAndClassNameOnlyProps> {
closeLabel?: string;
closeVariant?: CloseButtonVariant;
closeButton?: boolean;
}
declare type ToastHeader = BsPrefixRefForwardingComponent<'div', ToastHeaderProps>;
declare const ToastHeader: ToastHeader;
export default ToastHeader;