From 3ebff4d133372e339e2c4c439576e9e192b29cc3 Mon Sep 17 00:00:00 2001 From: networdai <147256317+networdai@users.noreply.github.com> Date: Mon, 3 Jun 2024 13:45:36 +0400 Subject: [PATCH] feat(Notification): allow ring customization with `{color}` (#1830) Co-authored-by: Benjamin Canac --- src/runtime/components/overlays/Notification.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/runtime/components/overlays/Notification.vue b/src/runtime/components/overlays/Notification.vue index 88f4ffe8..43c1faa9 100644 --- a/src/runtime/components/overlays/Notification.vue +++ b/src/runtime/components/overlays/Notification.vue @@ -131,7 +131,8 @@ export default defineComponent({ ui.value.wrapper, ui.value.background?.replaceAll('{color}', props.color), ui.value.rounded, - ui.value.shadow + ui.value.shadow, + ui.value.ring?.replaceAll('{color}', props.color) ), props.class) })