react-popup-alert
Version:
Alert popup for ReactJS
16 lines (15 loc) • 395 B
TypeScript
export interface AlertProps {
text: string;
onClosePress: Function;
show: boolean;
header?: string | undefined;
btnText?: string | undefined;
showBorderBottom?: boolean;
type?: string;
color?: string;
pressCloseOnOutsideClick?: boolean;
alertStyles?: object;
headerStyles?: object;
textStyles?: object;
buttonStyles?: object;
}