Last active
April 15, 2024 11:53
-
-
Save andriytyurnikov/2eae61cc3ef602dd9a847842943dcec2 to your computer and use it in GitHub Desktop.
badge helper
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def sane_badge(color:, &block) | |
color = color | |
color_classes = case color | |
when :red, :green, :blue | |
"border-#{color}-border text-#{color}-text" | |
end | |
default_classes = "whatever" | |
content_tag :div, class: "#{color_classes} #{default_classes}" { yield } | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment