Sha256: 1eb52e07ff7be99e5040bda378a32e698c59e76d4e84f8a3957929966fa127a5

Contents?: true

Size: 704 Bytes

Versions: 10

Compression:

Stored size: 704 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Icons
    module Tabler
      class ArrowMoveDown < Base
        def filled
          raise NotImplementedError
        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'
          ) do |s|
            s.path(d: 'M12 11v10')
            s.path(d: 'M9 18l3 3l3 -3')
            s.path(d: 'M12 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0')
          end
        end
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 2 rubygems

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