<%= render Zui::Link.new(href: "/", underline: true, style: :active) { "Active" } %>
<%= render Zui::Link.new(href: "/", underline: true) { "Standard" } %>
<%= zui("link", href: "/", underline: true, style: :muted) { "Muted" } %>
<%= zui("link", href: "/", underline: true, color: :gray, style: :active) { "Active" } %>
<%= zui("link", href: "/", underline: true, color: :gray) { "Standard" } %>
<%= zui("link", href: "/", underline: true, style: :muted, color: :gray) { "Muted" } %>