import React from "react"; import Button from "./Button"; import classNames from "classnames"; type DialogType = { message: string; width?: "fit" | "full" | "1/2" | "1/3"; cancelButtonText?: string; actionButtonText?: string; actionButtonColor?: | "violet" | "pink" | "red" | "orange" | "yellow" | "lime" | "cyan"; }; const Dialog = ({ message, width, cancelButtonText, actionButtonText, actionButtonColor, }: DialogType) => { return (

{message}

{cancelButtonText && ( )} {actionButtonText && (
); }; export default Dialog;