app/helpers/bmc/font_awesome_helper.rb in bmc-1.5.1 vs app/helpers/bmc/font_awesome_helper.rb in bmc-1.6.0
- old
+ new
@@ -1,15 +1,15 @@
module BMC::FontAwesomeHelper
- def fa_s(id, **options)
- _bmc_fa_icon(id, fa_style: "fas", **options)
+ def fa_s(id, **)
+ _bmc_fa_icon(id, fa_style: "fas", **)
end
- def fa_r(id, **options)
- _bmc_fa_icon(id, fa_style: "far", **options)
+ def fa_r(id, **)
+ _bmc_fa_icon(id, fa_style: "far", **)
end
- def fa_b(id, **options)
- _bmc_fa_icon(id, fa_style: "fab", **options)
+ def fa_b(id, **)
+ _bmc_fa_icon(id, fa_style: "fab", **)
end
def _bmc_fa_icon(id, fa_style: nil, size: nil, spin: false, **options)
id = id.to_s.tr("_", "-").to_sym