summaryrefslogtreecommitdiff
path: root/lib/sidebars/concerns/has_icon.rb
blob: afff466239d130adac755a13d0c35674d87abff4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# frozen_string_literal: true

# This module has the necessary methods to show
# sprites or images next to the menu item.
module Sidebars
  module Concerns
    module HasIcon
      def sprite_icon
        nil
      end

      def sprite_icon_html_options
        {}
      end

      def image_path
        nil
      end

      def image_html_options
        {}
      end

      def icon_or_image?
        sprite_icon || image_path
      end
    end
  end
end