Skip to content

Instantly share code, notes, and snippets.

@andriytyurnikov
Last active April 15, 2024 11:53
Show Gist options
  • Save andriytyurnikov/2eae61cc3ef602dd9a847842943dcec2 to your computer and use it in GitHub Desktop.
Save andriytyurnikov/2eae61cc3ef602dd9a847842943dcec2 to your computer and use it in GitHub Desktop.
badge helper
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