import clsx from "clsx"; import React from "react"; interface ModalButtonProps { testId?: string; variant?: "default" | "text-like"; onClick?: () => void; text: string; className: React.HTMLProps["className"]; icon?: React.ReactNode; type?: "button" | "submit"; disabled?: boolean; intent?: string; } export function ModalButton({ testId, variant = "default", onClick, text, className, icon, type = "button", disabled, intent, }: ModalButtonProps) { return ( ); }