# frozen_string_literal: true
# rubocop:disable Metrics/LineLength
module IconsHelper
def draw_custom_icon(icon)
case icon
when 'i-shared'
icon = ''
when 'shared-edit'
icon = ''
when 'shared-read'
icon = ''
end
('').html_safe
end
end
# rubocop:enable Metrics/LineLength