Class: Irelia::Sidebar::Navigation::Preview
- Inherits:
-
ComponentPreview
- Object
- ComponentPreview
- Irelia::Sidebar::Navigation::Preview
- Defined in:
- app/components/irelia/sidebar/navigation/preview.rb
Instance Method Summary collapse
-
#default ⇒ Object
You can specify the container class for the default template self.container_class = “w-1/2 border border-gray-300”.
Instance Method Details
#default ⇒ Object
You can specify the container class for the default template self.container_class = “w-1/2 border border-gray-300”
7 8 9 10 11 12 13 14 15 |
# File 'app/components/irelia/sidebar/navigation/preview.rb', line 7 def default render(Irelia::Sidebar::Navigation::Component.new) do || .with_link(url: "#", icon: "fa fa-home", active: true) { "Home" } .with_link(url: "#", icon: "fa fa-globe") { "Websites" } .with_link(url: "#", icon: "fab fa-github") { "Repositories" } .with_link(url: "#", icon: "fa fa-book") { "Guide & documenation" } .with_link(url: "#", icon: "fa fa-gear") { "Settings" } end end |