Skip to content

Commit

Permalink
feat(sprite) corrige chamada no sprite
Browse files Browse the repository at this point in the history
  • Loading branch information
irineujunior committed Aug 14, 2024
1 parent f9e220a commit 3f48e15
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion resources/views/livewire-tables/columns/delete.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class="icon d-sm-none d-block m-0"
stroke-linecap="round"
stroke-linejoin="round"
>
<use xlink:href="{{ asset('vendor/admix/images/tabler-sprite.svg') }}#tabler-trash"/>
<use xlink:href="{{ asset('vendor/admix-ui/images/tabler-sprite.svg') }}#tabler-trash"/>
</svg>
<span class="d-none d-sm-block">
{{ $title }}
Expand Down
2 changes: 1 addition & 1 deletion resources/views/livewire-tables/columns/edit.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class="icon d-sm-none d-block m-0"
stroke-linecap="round"
stroke-linejoin="round"
>
<use xlink:href="{{ asset('vendor/admix/images/tabler-sprite.svg') }}#tabler-pencil"/>
<use xlink:href="{{ asset('vendor/admix-ui/images/tabler-sprite.svg') }}#tabler-pencil"/>
</svg>
<span class="d-none d-sm-block">
{{ $title }}
Expand Down
2 changes: 1 addition & 1 deletion resources/views/livewire-tables/columns/emit.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class="icon d-sm-none d-block m-0"
stroke-linecap="round"
stroke-linejoin="round"
>
<use xlink:href="{{ asset('vendor/admix/images/tabler-sprite.svg') }}#tabler-{{ $attributes['icon'] ?? 'click' }}"/>
<use xlink:href="{{ asset('vendor/admix-ui/images/tabler-sprite.svg') }}#tabler-{{ $attributes['icon'] ?? 'click' }}"/>
</svg>
<span class="d-none d-sm-block">
{{ $title }}
Expand Down
2 changes: 1 addition & 1 deletion resources/views/livewire-tables/columns/modal.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class="icon d-sm-none d-block m-0"
stroke-linecap="round"
stroke-linejoin="round"
>
<use xlink:href="{{ asset('vendor/admix/images/tabler-sprite.svg') }}#tabler-zoom-in"/>
<use xlink:href="{{ asset('vendor/admix-ui/images/tabler-sprite.svg') }}#tabler-zoom-in"/>
</svg>
<span class="d-none d-sm-block">
{{ $title }}
Expand Down
2 changes: 1 addition & 1 deletion resources/views/livewire-tables/columns/restore.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class="icon d-sm-none d-block m-0"
stroke-linecap="round"
stroke-linejoin="round"
>
<use xlink:href="{{ asset('vendor/admix/images/tabler-sprite.svg') }}#tabler-restore"/>
<use xlink:href="{{ asset('vendor/admix-ui/images/tabler-sprite.svg') }}#tabler-restore"/>
</svg>
<span class="d-none d-sm-block">
{{ $title }}
Expand Down
2 changes: 1 addition & 1 deletion src/View/Components/Buttons/Create.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class="icon d-sm-none d-block m-0"
stroke-linecap="round"
stroke-linejoin="round"
>
<use xlink:href="{{ asset('vendor/admix/images/tabler-sprite.svg') }}#tabler-plus"/>
<use xlink:href="{{ asset('vendor/admix-ui/images/tabler-sprite.svg') }}#tabler-plus"/>
</svg>
<span class="d-none d-sm-block">
{{ $fallback }}
Expand Down
2 changes: 1 addition & 1 deletion src/View/Components/Buttons/Trash.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class="icon d-sm-none d-block m-0"
stroke-linecap="round"
stroke-linejoin="round"
>
<use xlink:href="{{ asset('vendor/admix/images/tabler-sprite.svg') }}#tabler-trash"/>
<use xlink:href="{{ asset('vendor/admix-ui/images/tabler-sprite.svg') }}#tabler-trash"/>
</svg>
<span class="d-none d-sm-block">
{{ $fallback }}
Expand Down

0 comments on commit 3f48e15

Please sign in to comment.