@krowdy-ui/views
Version:
React components that implement Google's Material Design.
14 lines (11 loc) • 307 B
TypeScript
import { PropTypes } from "@krowdy-ui/core";
export type ModalInfoProps = {
open ?: boolean,
actions?: Array<unknown>,
color?: PropTypes.Color;
title ?: string,
onClose?: Function,
content?: unknown
};
declare const ModalInfo: React.ComponentType<ModalInfoProps>;
export default ModalInfo;