Class: Heroicons::Config
- Inherits:
-
Object
- Object
- Heroicons::Config
- Defined in:
- lib/heroicons/config.rb
Instance Attribute Summary collapse
-
#attributes ⇒ Object
Returns the value of attribute attributes.
-
#variant ⇒ Object
Returns the value of attribute variant.
Instance Method Summary collapse
-
#initialize ⇒ Config
constructor
A new instance of Config.
Constructor Details
#initialize ⇒ Config
Returns a new instance of Config.
7 8 9 10 |
# File 'lib/heroicons/config.rb', line 7 def initialize @variant = :solid @attributes = Hash.new { |_hash, _key| {} } end |
Instance Attribute Details
#attributes ⇒ Object
Returns the value of attribute attributes.
5 6 7 |
# File 'lib/heroicons/config.rb', line 5 def attributes @attributes end |
#variant ⇒ Object
Returns the value of attribute variant.
5 6 7 |
# File 'lib/heroicons/config.rb', line 5 def variant @variant end |