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