Sha256: eede7190cd01306ec0fa8043d2a8c40c3bb06e5defce7bc4c6484185adf4ef03

Contents?: true

Size: 1.45 KB

Versions: 14

Compression:

Stored size: 1.45 KB

Contents

# frozen_string_literal: true

module Phlex
  module Icons
    module Tabler
      class LayoutKanban < 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 3a1 1 0 0 1 0 2h-6a1 1 0 1 1 0 -2z')
            s.path(d: 'M20 3a1 1 0 0 1 0 2h-6a1 1 0 0 1 0 -2z')
            s.path(
              d:
                'M8 7a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3z'
            )
            s.path(
              d:
                'M18 7a3 3 0 0 1 3 3v2a3 3 0 0 1 -3 3h-2a3 3 0 0 1 -3 -3v-2a3 3 0 0 1 3 -3z'
            )
          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: 'M4 4l6 0')
            s.path(d: 'M14 4l6 0')
            s.path(
              d:
                'M4 8m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z'
            )
            s.path(
              d:
                'M14 8m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z'
            )
          end
        end
      end
    end
  end
end

Version data entries

14 entries across 14 versions & 2 rubygems

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