This commit is contained in:
Torsten 2023-01-22 23:17:44 +02:00
parent f6bac88800
commit 4f33e475e5
2 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,5 @@
# frozen_string_literal: true
module HeroiconHelper
include Heroicon::Engine.helpers
end

View File

@ -0,0 +1,10 @@
# frozen_string_literal: true
Heroicon.configure do |config|
config.variant = :solid # Options are :solid, :outline and :mini
##
# You can set a default class, which will get applied to every icon with
# the given variant. To do so, un-comment the line below.
# config.default_class = {solid: "h-5 w-5", outline: "h-6 w-6", mini: "h-4 w-4"}
end