mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-06 22:15:20 +02:00
10 lines
376 B
Text
10 lines
376 B
Text
|
<%# locals: (name:, path:, icon:) %>
|
||
|
|
||
|
<%= link_to path, class: class_names(
|
||
|
"flex items-center gap-2 btn btn--ghost",
|
||
|
page_active?(path) ? "text-primary bg-white shadow-border-xs" : "text-secondary hover:bg-gray-100 border-transparent"
|
||
|
), aria: { current: ("page" if page_active?(path)) } do %>
|
||
|
<%= lucide_icon(icon, class: "w-5 h-5") if icon %>
|
||
|
<%= name %>
|
||
|
<% end %>
|