stubs/hotwire/app/components/danger_button_component.rb in kaze-0.4.0 vs stubs/hotwire/app/components/danger_button_component.rb in kaze-0.5.0
- old
+ new
@@ -4,10 +4,10 @@
<%= content %>
</button>
ERB
def initialize(attributes = {})
- attributes[:type] = attributes[:type] || "submit"
+ attributes[:type] = attributes[:type] || 'submit'
attributes[:class] = "inline-flex items-center px-4 py-2 bg-red-600 border border-transparent rounded-md font-semibold text-xs text-white uppercase tracking-widest hover:bg-red-500 active:bg-red-700 focus:outline-none focus:ring-2 focus:ring-red-500 focus:ring-offset-2 dark:focus:ring-offset-gray-800 transition ease-in-out duration-150#{" #{attributes[:class]}" if attributes[:class]}"
@attributes = attributes.map { |key, attribute| "#{key}=\"#{attribute}\"" }
end
end