From 8fcfc541dc0f84951f15fd0ba070acb20453d31f Mon Sep 17 00:00:00 2001 From: "M. D." Date: Fri, 11 Oct 2024 16:06:19 +0200 Subject: [PATCH] Fix #24 --- src/Components/Infolists/SimpleAlert.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Components/Infolists/SimpleAlert.php b/src/Components/Infolists/SimpleAlert.php index 943d5a9..b4340cb 100644 --- a/src/Components/Infolists/SimpleAlert.php +++ b/src/Components/Infolists/SimpleAlert.php @@ -3,6 +3,7 @@ namespace CodeWithDennis\SimpleAlert\Components\Infolists; use Closure; +use CodeWithDennis\SimpleAlert\Components\Concerns\HasBorder; use CodeWithDennis\SimpleAlert\Components\Concerns\HasColor; use CodeWithDennis\SimpleAlert\Components\Concerns\HasDescription; use CodeWithDennis\SimpleAlert\Components\Concerns\HasIcon; @@ -13,6 +14,7 @@ class SimpleAlert extends Entry { + use HasBorder; use HasColor; use HasDescription; use HasIcon;