Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
devajmeireles committed Oct 11, 2023
1 parent 9565808 commit 03f0338
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 17 deletions.
3 changes: 1 addition & 2 deletions app/Enums/Examples/Form/Password.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ class Password
public const LIVEWIRE = <<<'HTML'
<x-password label="Password"
hint="Insert your best password"
wire:model="password"
/>
wire:model="password" />
HTML;
}
18 changes: 4 additions & 14 deletions app/Enums/Examples/Ui/Icon.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,30 +5,20 @@
class Icon
{
public const BASIC = <<<'HTML'
<!-- You can also use "icon" instead of "name" -->
<x-icon name="users" class="h-5 w-5" />
<x-icon name="cog" class="h-5 w-5" />
<x-icon name="arrow-left" class="h-5 w-5" />
<x-icon name="arrow-right" class="h-5 w-5" />
<!-- or -->
<x-icon icon="users" class="h-5 w-5" />
<x-icon icon="cog" class="h-5 w-5" />
<x-icon icon="arrow-left" class="h-5 w-5" />
<x-icon icon="arrow-right" class="h-5 w-5" />
HTML;

public const OUTLINE = <<<'HTML'
<!-- You can also use "icon" instead of "name" -->
<x-icon name="users" class="h-5 w-5" />
<x-icon name="users" class="h-5 w-5" outline />
<x-icon name="clipboard" class="h-5 w-5" />
<x-icon name="clipboard" class="h-5 w-5" outline />
<!-- or -->
<x-icon icon="users" class="h-5 w-5" />
<x-icon icon="users" class="h-5 w-5" outline />
<x-icon icon="clipboard" class="h-5 w-5" />
<x-icon icon="clipboard" class="h-5 w-5" outline />
HTML;
}
2 changes: 1 addition & 1 deletion resources/views/components/layout/banner.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
TallStackUi
</span>
</div>
<p class="mt-4 font-medium text-white">Ready-to-use TALL Stack Components.</p>
<p class="mt-4 font-medium text-white">Your Next-level of TALL Stack Components.</p>
</div>
</div>
</div>

0 comments on commit 03f0338

Please sign in to comment.