Welcome to mirror list, hosted at ThFree Co, Russian Federation.

has_icon.rb « concerns « sidebars « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6f797f5a1ff3a8699b1a9ac056fbffe991b631db (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
# 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 icon_or_image?
        sprite_icon || image_path
      end
    end
  end
end