From 536fa6c917d63b14feeb8f876e6a1d62acb577fc Mon Sep 17 00:00:00 2001 From: Sam Light Date: Thu, 12 Feb 2026 00:23:02 +0000 Subject: Created new dropdown toolbar item --- src/Concerns/WithAttributes.php | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 src/Concerns/WithAttributes.php (limited to 'src/Concerns/WithAttributes.php') diff --git a/src/Concerns/WithAttributes.php b/src/Concerns/WithAttributes.php deleted file mode 100644 index dceec69..0000000 --- a/src/Concerns/WithAttributes.php +++ /dev/null @@ -1,30 +0,0 @@ - - */ - protected ?array $attributes = null; - - /** - * @param array $attributes - */ - public function attributes(array $attributes): static - { - $this->attributes = $attributes; - - return $this; - } - - protected function getAttributes(): ComponentAttributeBag - { - return new ComponentAttributeBag($this->attributes ?? []); - } -} -- cgit v1.2.3