Sha256: 181544991bf4074e9d941c01205ae5ccdb854aa204e6efafafbf7b92e8295f84

Contents?: true

Size: 1.03 KB

Versions: 12

Compression:

Stored size: 1.03 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class ArrowBadgeUp < Base
        def filled
          svg(
            class: classes,
            xmlns: 'http://www.w3.org/2000/svg',
            viewbox: '0 0 24 24',
            fill: 'currentColor'
          ) do |s|
            s.path(
              d:
                'M11.375 6.22l-5 4a1 1 0 0 0 -.375 .78v6l.006 .112a1 1 0 0 0 1.619 .669l4.375 -3.501l4.375 3.5a1 1 0 0 0 1.625 -.78v-6a1 1 0 0 0 -.375 -.78l-5 -4a1 1 0 0 0 -1.25 0z'
            )
          end
        end

        def outline
          svg(
            class: classes,
            xmlns: 'http://www.w3.org/2000/svg',
            viewbox: '0 0 24 24',
            fill: 'none',
            stroke: 'currentColor',
            stroke_width: '2',
            stroke_linecap: 'round',
            stroke_linejoin: 'round'
          ) { |s| s.path(d: 'M17 11v6l-5 -4l-5 4v-6l5 -4z') }
        end
      end
    end
  end
end
# rubocop:enable Layout/LineLength

Version data entries

12 entries across 12 versions & 2 rubygems

Version Path
phlex-icons-tabler-0.17.0 lib/phlex/icons/tabler/arrow_badge_up.rb
phlex-icons-0.17.0 lib/phlex/icons/tabler/arrow_badge_up.rb
phlex-icons-tabler-0.16.0 lib/phlex/icons/tabler/arrow_badge_up.rb
phlex-icons-0.16.0 lib/phlex/icons/tabler/arrow_badge_up.rb
phlex-icons-tabler-0.15.0 lib/phlex/icons/tabler/arrow_badge_up.rb
phlex-icons-0.15.0 lib/phlex/icons/tabler/arrow_badge_up.rb
phlex-icons-tabler-0.14.0 lib/phlex/icons/tabler/arrow_badge_up.rb
phlex-icons-0.14.0 lib/phlex/icons/tabler/arrow_badge_up.rb
phlex-icons-tabler-0.13.0 lib/phlex/icons/tabler/arrow_badge_up.rb
phlex-icons-0.13.0 lib/phlex/icons/tabler/arrow_badge_up.rb
phlex-icons-0.12.0 lib/phlex/icons/tabler/arrow_badge_up.rb
phlex-icons-tabler-0.12.0 lib/phlex/icons/tabler/arrow_badge_up.rb