Current section
Files
Jump to
Current section
Files
lib/scales_cms_web/components/dashboard/tile_content.html.heex
<div class="flex items-start space-x-4">
<div class="flex-shrink-0 p-3 rounded-lg transition-colors">
<.icon name={@tile.icon} class="h-6 w-6" />
</div>
<div class="flex-1 min-w-0">
<h3 class="text-lg font-semibold transition-colors">
{@tile.title}
<.icon
:if={@tile.external}
name="hero-arrow-top-right-on-square"
class="inline-block h-4 w-4 ml-1 opacity-50"
/>
</h3>
<p :if={@tile.description} class="mt-1 text-sm text-gray-500">
{@tile.description}
</p>
</div>
<div class="flex-shrink-0 opacity-0 group-hover:opacity-100 transition-opacity">
<.icon name="hero-arrow-right" class="h-5 w-5" />
</div>
</div>