Tabs
Tabs component for organizing content into sections.
Example
<%= render Ui::Tabs::Component.new do |tabs| %>
<% tabs.with_item(title: "Profile", href: "#", icon: "alert.svg") %>
<% tabs.with_item(title: "Dashboard", href: "#", active: true, icon: "alert.svg") %>
<% tabs.with_item(title: "Settings", href: "#", icon: "alert.svg") %>
<% tabs.with_item(title: "Contacts", href: "#", icon: "alert.svg") %>
<% end %>