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