class AppCardComponent
Public Class Methods
Source
# File app/components/app_card_component.rb, line 41 def initialize( colour: nil, link_to: nil, clickable: nil, feature: false, secondary: false, compact: false, filters: false, section: false ) @link_to = link_to @clickable = clickable.nil? ? link_to.present? : clickable @colour = colour @feature = filters || feature @secondary = secondary @compact = compact @filters = filters @section = section end