Sha256: 53a414b7ca0ce26cd79a83f1878ff975377fdbcdfa81251a77b8a70132c9b9ae

Contents?: true

Size: 1.01 KB

Versions: 12

Compression:

Stored size: 1.01 KB

Contents

# frozen_string_literal: true

module Phlex
  module Icons
    module Tabler
      class LayoutGridRemove < 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:
                'M4 5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z'
            )
            s.path(
              d:
                'M14 5a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z'
            )
            s.path(
              d:
                'M4 15a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4z'
            )
            s.path(d: 'M14 17h6')
          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/layout_grid_remove.rb
phlex-icons-0.17.0 lib/phlex/icons/tabler/layout_grid_remove.rb
phlex-icons-tabler-0.16.0 lib/phlex/icons/tabler/layout_grid_remove.rb
phlex-icons-0.16.0 lib/phlex/icons/tabler/layout_grid_remove.rb
phlex-icons-tabler-0.15.0 lib/phlex/icons/tabler/layout_grid_remove.rb
phlex-icons-0.15.0 lib/phlex/icons/tabler/layout_grid_remove.rb
phlex-icons-tabler-0.14.0 lib/phlex/icons/tabler/layout_grid_remove.rb
phlex-icons-0.14.0 lib/phlex/icons/tabler/layout_grid_remove.rb
phlex-icons-tabler-0.13.0 lib/phlex/icons/tabler/layout_grid_remove.rb
phlex-icons-0.13.0 lib/phlex/icons/tabler/layout_grid_remove.rb
phlex-icons-0.12.0 lib/phlex/icons/tabler/layout_grid_remove.rb
phlex-icons-tabler-0.12.0 lib/phlex/icons/tabler/layout_grid_remove.rb