Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
francoism90 authored and github-actions[bot] committed Jul 8, 2024
1 parent c274dcc commit 53aa055
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/Support/Html/Mixins/HtmlExtendedMixin.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,14 @@

use Foxws\WireUse\Support\Html\Elements\Icon;
use Livewire\Form;
use Spatie\Html\Elements\Div;

class HtmlExtendedMixin
{
protected ?Form $form = null;

public function wireForm(): mixed
{
return function (?Form $value = null): static
{
return function (?Form $value = null): static {
$this->form = $value;

return $this;
Expand All @@ -22,8 +20,7 @@ public function wireForm(): mixed

public function icon()
{
return function (): Icon
{
return function (): Icon {
return Icon::create();
};
}
Expand Down

0 comments on commit 53aa055

Please sign in to comment.