Skip to content

Commit 9ec7421

Browse files
committed
feat: add Quick Access Item component
1 parent 78480e6 commit 9ec7421

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!-- Quick Access Item Component -->
2+
<div class="p-4 rounded-2xl hover:border-blue-200 transition-all cursor-pointer bg-white group">
3+
<div class="flex items-center gap-4 mb-4">
4+
<div class="p-2.5 bg-<%= iconBg %> rounded-lg text-<%= iconColor %> group-hover:bg-blue-600 group-hover:text-white transition-all">
5+
<%- icon %>
6+
</div>
7+
<div class="flex-1 overflow-hidden">
8+
<h4 class="font-bold text-slate-900 text-sm truncate"><%= title %></h4>
9+
<p class="text-[10px] text-slate-400"><%= label %><%= size %></p>
10+
</div>
11+
</div>
12+
<div class="flex justify-between text-[10px] text-slate-400">
13+
<span><%= fileCount %></span>
14+
<span><%= updated %></span>
15+
</div>
16+
</div>

0 commit comments

Comments
 (0)