Sha256: 390213bffaf210de51bf68c247da1120254a0118541feab388e885603028372f

Contents?: true

Size: 1.09 KB

Versions: 12

Compression:

Stored size: 1.09 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class View360Number < 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:
                'M14 6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3'
            )
            s.path(
              d:
                'M3 5h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5'
            )
            s.path(d: 'M17 7v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z')
            s.path(d: 'M3 16c0 1.657 4.03 3 9 3s9 -1.343 9 -3')
          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/view_360_number.rb
phlex-icons-0.17.0 lib/phlex/icons/tabler/view_360_number.rb
phlex-icons-tabler-0.16.0 lib/phlex/icons/tabler/view_360_number.rb
phlex-icons-0.16.0 lib/phlex/icons/tabler/view_360_number.rb
phlex-icons-tabler-0.15.0 lib/phlex/icons/tabler/view_360_number.rb
phlex-icons-0.15.0 lib/phlex/icons/tabler/view_360_number.rb
phlex-icons-tabler-0.14.0 lib/phlex/icons/tabler/view_360_number.rb
phlex-icons-0.14.0 lib/phlex/icons/tabler/view_360_number.rb
phlex-icons-tabler-0.13.0 lib/phlex/icons/tabler/view_360_number.rb
phlex-icons-0.13.0 lib/phlex/icons/tabler/view_360_number.rb
phlex-icons-0.12.0 lib/phlex/icons/tabler/view_360_number.rb
phlex-icons-tabler-0.12.0 lib/phlex/icons/tabler/view_360_number.rb