mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-11 01:31:39 -05:00
18 lines
638 B
Text
18 lines
638 B
Text
|
|
<div role="<%= notification.kind %>" class="<%= notification.kind %> shadow-lg" id="<%= dom_id notification %>">
|
||
|
|
<svg
|
||
|
|
xmlns="http://www.w3.org/2000/svg"
|
||
|
|
fill="none"
|
||
|
|
viewBox="0 0 24 24"
|
||
|
|
class="stroke-info h-6 w-6 shrink-0">
|
||
|
|
<path
|
||
|
|
stroke-linecap="round"
|
||
|
|
stroke-linejoin="round"
|
||
|
|
stroke-width="2"
|
||
|
|
d="M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"></path>
|
||
|
|
</svg>
|
||
|
|
<div>
|
||
|
|
<h3 class="font-bold"><%= link_to notification.title, notification, class: 'link hover:no-underline' %></h3>
|
||
|
|
<div class="text-s"><%= time_ago_in_words notification.created_at %> ago</div>
|
||
|
|
</div>
|
||
|
|
</div>
|