From 4c18f3c681cbda916af05c49edd82cd197c237ca Mon Sep 17 00:00:00 2001 From: swapnilsarwe Date: Mon, 19 Aug 2024 12:16:36 +0000 Subject: [PATCH 1/2] auto-update: update icons with the latest commit 537ed7516a8503ee08a5bcc2abc48c21d0b5f7ba --- .commit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.commit b/.commit index 640beb50..79445fad 100644 --- a/.commit +++ b/.commit @@ -1 +1 @@ -20721292a2d606f8d3094d6c56de691eb2bf3849 \ No newline at end of file +537ed7516a8503ee08a5bcc2abc48c21d0b5f7ba From 6552d7e27e8dc13116ba11508fdfea0b0e12f43b Mon Sep 17 00:00:00 2001 From: Swapnil Sarwe Date: Tue, 20 Aug 2024 18:23:06 +0530 Subject: [PATCH 2/2] tests updated with new icon str --- tests/CompilesIconsTest.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/CompilesIconsTest.php b/tests/CompilesIconsTest.php index cc87ea98..8451f698 100644 --- a/tests/CompilesIconsTest.php +++ b/tests/CompilesIconsTest.php @@ -18,7 +18,7 @@ public function it_compiles_a_single_anonymous_component() // Note: the empty class here seems to be a Blade components bug. $expected = <<<'SVG' - + SVG; $this->assertSame($expected, $result); @@ -30,7 +30,7 @@ public function it_can_add_classes_to_icons() $result = svg('solar-4k-bold', 'w-6 h-6 text-gray-500')->toHtml(); $expected = <<<'SVG' - + SVG; $this->assertSame($expected, $result); @@ -42,7 +42,7 @@ public function it_can_add_styles_to_icons() $result = svg('solar-4k-bold', ['style' => 'color: #555'])->toHtml(); $expected = <<<'SVG' - + SVG; $this->assertSame($expected, $result); @@ -56,7 +56,7 @@ public function it_can_add_default_class_from_config() $result = svg('solar-4k-bold')->toHtml(); $expected = <<<'SVG' - + SVG; $this->assertSame($expected, $result); @@ -70,7 +70,7 @@ public function it_can_merge_default_class_from_config() $result = svg('solar-4k-bold', 'w-6 h-6')->toHtml(); $expected = <<<'SVG' - + SVG; $this->assertSame($expected, $result);