Sha256: cbcfe830c38cc689743e4aed6ff18b61455fd524d8dcc4e1248d44048434f199

Contents?: true

Size: 760 Bytes

Versions: 12

Compression:

Stored size: 760 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Icons
    module Tabler
      class Spaces < 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.045 9.777a6 6 0 1 0 5.951 .023')
            s.path(d: 'M11.997 20.196a6 6 0 1 0 -2.948 -5.97')
            s.path(d: 'M17.95 9.785q .05 -.386 .05 -.785a6 6 0 1 0 -3.056 5.23')
          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/spaces.rb
phlex-icons-0.17.0 lib/phlex/icons/tabler/spaces.rb
phlex-icons-tabler-0.16.0 lib/phlex/icons/tabler/spaces.rb
phlex-icons-0.16.0 lib/phlex/icons/tabler/spaces.rb
phlex-icons-tabler-0.15.0 lib/phlex/icons/tabler/spaces.rb
phlex-icons-0.15.0 lib/phlex/icons/tabler/spaces.rb
phlex-icons-tabler-0.14.0 lib/phlex/icons/tabler/spaces.rb
phlex-icons-0.14.0 lib/phlex/icons/tabler/spaces.rb
phlex-icons-tabler-0.13.0 lib/phlex/icons/tabler/spaces.rb
phlex-icons-0.13.0 lib/phlex/icons/tabler/spaces.rb
phlex-icons-0.12.0 lib/phlex/icons/tabler/spaces.rb
phlex-icons-tabler-0.12.0 lib/phlex/icons/tabler/spaces.rb