From 26bfd3b42d37c8970c52dfc97b805e97235b1ad1 Mon Sep 17 00:00:00 2001 From: Brandy Smith <6577830+brandyscarney@users.noreply.github.com> Date: Thu, 23 Jan 2025 15:33:12 -0500 Subject: [PATCH] docs(toast): remove cssClass property from ToastButton interface closes #3993 --- docs/api/toast.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/api/toast.md b/docs/api/toast.md index a111e574566..c9df2deeaa0 100644 --- a/docs/api/toast.md +++ b/docs/api/toast.md @@ -222,7 +222,6 @@ interface ToastButton { icon?: string; side?: 'start' | 'end'; role?: 'cancel' | string; - cssClass?: string | string[]; htmlAttributes?: { [key: string]: any }; handler?: () => boolean | void | Promise; }