Sha256: f2fb9bac774b2246ae249caab0e40a3e76a1ff8ac282f4b94240826ea0e30a1c

Contents?: true

Size: 823 Bytes

Versions: 12

Compression:

Stored size: 823 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Icons
    module Tabler
      class ChartArrows < 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: 'M3 18l14 0')
            s.path(d: 'M9 9l3 3l-3 3')
            s.path(d: 'M14 15l3 3l-3 3')
            s.path(d: 'M3 3l0 18')
            s.path(d: 'M3 12l9 0')
            s.path(d: 'M18 3l3 3l-3 3')
            s.path(d: 'M3 6l18 0')
          end
        end
      end
    end
  end
end

Version data entries

12 entries across 12 versions & 2 rubygems

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