Class: Tailwinds::Nav::ItemComponent

Inherits:
TailwindComponent show all
Defined in:
app/components/tailwinds/nav/item_component.rb

Overview

Base class for all Nav::ItemComponent classes

Instance Method Summary collapse

Methods included from Tramway::Helpers::ComponentHelper

#component

Instance Method Details

#styleObject



8
9
10
11
12
13
# File 'app/components/tailwinds/nav/item_component.rb', line 8

def style
  @style ||= [
    'text-white', 'hover:bg-gray-300', 'hover:text-gray-800', 'px-4', 'py-2', 'rounded', 'whitespace-nowrap',
    'dark:hover:bg-gray-700', 'dark:hover:text-gray-400', 'dark:text-white'
  ].join(' ')
end