Class: Irelia::Card::Preview
- Inherits:
-
Irelia::ComponentPreview
- Object
- Irelia::ComponentPreview
- Irelia::Card::Preview
- Defined in:
- app/components/irelia/card/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”.
- #no_padding ⇒ Object
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 |
# File 'app/components/irelia/card/preview.rb', line 7 def default irelia_card do "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec sodales fermentum tristique." end end |
#no_padding ⇒ Object
13 14 15 16 17 |
# File 'app/components/irelia/card/preview.rb', line 13 def no_padding irelia_card(padding: false) do "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec sodales fermentum tristique." end end |