Skip to content

Instantly share code, notes, and snippets.

View danieljpalmer's full-sized avatar

Daniel Palmer danieljpalmer

View GitHub Profile
@danieljpalmer
danieljpalmer / icon-loader.blade.php
Last active June 27, 2020 09:58
SVG Loader Animation - Blade + Alpine
<div id="{{ $id }}" class="relative flex items-center justify-center fill-current">
<div class="text-gray-200">{{ $slot }}</div>
<div class="text-indigo-600 absolute">{{ $slot }}</div>
</div>
<!-- id used to scope this duration to this element -->
<style>
.reveal-animation #{{ $id }} {
<?php
/**
* In your Livewire model for the list of items
*/
class ItemList extends Component
{
// rest of component