Sha256: 9e8fb0ae12c25558bcb3da57dd57b920e5f64002b11546b89a29cbf70e67947f

Contents?: true

Size: 1.58 KB

Versions: 12

Compression:

Stored size: 1.58 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class ArrowBigUpLines < 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:
                'M10.586 3l-6.586 6.586a2 2 0 0 0 -.434 2.18l.068 .145a2 2 0 0 0 1.78 1.089h2.586v2a1 1 0 0 0 1 1h6l.117 -.007a1 1 0 0 0 .883 -.993l-.001 -2h2.587a2 2 0 0 0 1.414 -3.414l-6.586 -6.586a2 2 0 0 0 -2.828 0z'
            )
            s.path(
              d:
                'M15 20a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z'
            )
            s.path(
              d:
                'M15 17a1 1 0 0 1 .117 1.993l-.117 .007h-6a1 1 0 0 1 -.117 -1.993l.117 -.007h6z'
            )
          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'
          ) do |s|
            s.path(
              d:
                'M9 12h-3.586a1 1 0 0 1 -.707 -1.707l6.586 -6.586a1 1 0 0 1 1.414 0l6.586 6.586a1 1 0 0 1 -.707 1.707h-3.586v3h-6v-3z'
            )
            s.path(d: 'M9 21h6')
            s.path(d: 'M9 18h6')
          end
        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_big_up_lines.rb
phlex-icons-0.17.0 lib/phlex/icons/tabler/arrow_big_up_lines.rb
phlex-icons-tabler-0.16.0 lib/phlex/icons/tabler/arrow_big_up_lines.rb
phlex-icons-0.16.0 lib/phlex/icons/tabler/arrow_big_up_lines.rb
phlex-icons-tabler-0.15.0 lib/phlex/icons/tabler/arrow_big_up_lines.rb
phlex-icons-0.15.0 lib/phlex/icons/tabler/arrow_big_up_lines.rb
phlex-icons-tabler-0.14.0 lib/phlex/icons/tabler/arrow_big_up_lines.rb
phlex-icons-0.14.0 lib/phlex/icons/tabler/arrow_big_up_lines.rb
phlex-icons-tabler-0.13.0 lib/phlex/icons/tabler/arrow_big_up_lines.rb
phlex-icons-0.13.0 lib/phlex/icons/tabler/arrow_big_up_lines.rb
phlex-icons-0.12.0 lib/phlex/icons/tabler/arrow_big_up_lines.rb
phlex-icons-tabler-0.12.0 lib/phlex/icons/tabler/arrow_big_up_lines.rb