Sha256: e46b345f751700c81ffe518d2d9b28c702e343c7c99a3bd6ea5d67a4b8f4f9a9

Contents?: true

Size: 906 Bytes

Versions: 12

Compression:

Stored size: 906 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Icons
    module Tabler
      class Luggage < 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:
                'M6 6m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z'
            )
            s.path(d: 'M9 6v-1a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1')
            s.path(d: 'M6 10h12')
            s.path(d: 'M6 16h12')
            s.path(d: 'M9 20v1')
            s.path(d: 'M15 20v1')
          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/luggage.rb
phlex-icons-0.17.0 lib/phlex/icons/tabler/luggage.rb
phlex-icons-tabler-0.16.0 lib/phlex/icons/tabler/luggage.rb
phlex-icons-0.16.0 lib/phlex/icons/tabler/luggage.rb
phlex-icons-tabler-0.15.0 lib/phlex/icons/tabler/luggage.rb
phlex-icons-0.15.0 lib/phlex/icons/tabler/luggage.rb
phlex-icons-tabler-0.14.0 lib/phlex/icons/tabler/luggage.rb
phlex-icons-0.14.0 lib/phlex/icons/tabler/luggage.rb
phlex-icons-tabler-0.13.0 lib/phlex/icons/tabler/luggage.rb
phlex-icons-0.13.0 lib/phlex/icons/tabler/luggage.rb
phlex-icons-0.12.0 lib/phlex/icons/tabler/luggage.rb
phlex-icons-tabler-0.12.0 lib/phlex/icons/tabler/luggage.rb