Sha256: 5f1c83f2ea663170bf03d4cc12a8d3913611b47c947013864630b9cd747ba2a2

Contents?: true

Size: 1.25 KB

Versions: 14

Compression:

Stored size: 1.25 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class ArrowBigDown < Base
        def filled
          svg(
            **attrs,
            xmlns: 'http://www.w3.org/2000/svg',
            viewbox: '0 0 24 24',
            fill: 'currentColor'
          ) do |s|
            s.path(
              d:
                'M10 2l-.15 .005a2 2 0 0 0 -1.85 1.995v6.999l-2.586 .001a2 2 0 0 0 -1.414 3.414l6.586 6.586a2 2 0 0 0 2.828 0l6.586 -6.586a2 2 0 0 0 .434 -2.18l-.068 -.145a2 2 0 0 0 -1.78 -1.089l-2.586 -.001v-6.999a2 2 0 0 0 -2 -2h-4z'
            )
          end
        end

        def outline
          svg(
            **attrs,
            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:
                'M15 4v8h3.586a1 1 0 0 1 .707 1.707l-6.586 6.586a1 1 0 0 1 -1.414 0l-6.586 -6.586a1 1 0 0 1 .707 -1.707h3.586v-8a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1z'
            )
          end
        end
      end
    end
  end
end
# rubocop:enable Layout/LineLength

Version data entries

14 entries across 14 versions & 2 rubygems

Version Path
phlex-icons-tabler-1.6.0 lib/phlex/icons/tabler/arrow_big_down.rb
phlex-icons-1.6.0 lib/phlex/icons/tabler/arrow_big_down.rb
phlex-icons-tabler-1.5.0 lib/phlex/icons/tabler/arrow_big_down.rb
phlex-icons-1.5.0 lib/phlex/icons/tabler/arrow_big_down.rb
phlex-icons-tabler-1.4.0 lib/phlex/icons/tabler/arrow_big_down.rb
phlex-icons-1.4.0 lib/phlex/icons/tabler/arrow_big_down.rb
phlex-icons-1.3.0 lib/phlex/icons/tabler/arrow_big_down.rb
phlex-icons-tabler-1.3.0 lib/phlex/icons/tabler/arrow_big_down.rb
phlex-icons-tabler-1.2.0 lib/phlex/icons/tabler/arrow_big_down.rb
phlex-icons-1.2.0 lib/phlex/icons/tabler/arrow_big_down.rb
phlex-icons-tabler-1.1.0 lib/phlex/icons/tabler/arrow_big_down.rb
phlex-icons-1.1.0 lib/phlex/icons/tabler/arrow_big_down.rb
phlex-icons-1.0.0 lib/phlex/icons/tabler/arrow_big_down.rb
phlex-icons-tabler-1.0.0 lib/phlex/icons/tabler/arrow_big_down.rb