posts: fix favorite icon.
Fix the favorite button using the outlined heart icon instead of the solid heart icon.
This commit is contained in:
@@ -57,10 +57,14 @@ module IconHelper
|
||||
icon_tag("fas fa-bookmark", **options)
|
||||
end
|
||||
|
||||
def favorite_icon(**options)
|
||||
def empty_heart_icon(**options)
|
||||
icon_tag("far fa-heart", **options)
|
||||
end
|
||||
|
||||
def solid_heart_icon(**options)
|
||||
icon_tag("fas fa-heart", **options)
|
||||
end
|
||||
|
||||
def comments_icon(**options)
|
||||
icon_tag("far fa-comments", **options)
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user