Sha256: 87b041746cffbaf9f6c85bb9440c3f3e9640d8d34b81a16d041c310233ce446e

Contents?: true

Size: 885 Bytes

Versions: 14

Compression:

Stored size: 885 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Icons
    module Tabler
      class DeviceWatchStats < Base
        def filled
          raise NotImplementedError
        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:
                'M6 6m0 3a3 3 0 0 1 3 -3h6a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-6a3 3 0 0 1 -3 -3z'
            )
            s.path(d: 'M9 18v3h6v-3')
            s.path(d: 'M9 6v-3h6v3')
            s.path(d: 'M9 14v-4')
            s.path(d: 'M12 14v-1')
            s.path(d: 'M15 14v-3')
          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/device_watch_stats.rb
phlex-icons-1.6.0 lib/phlex/icons/tabler/device_watch_stats.rb
phlex-icons-tabler-1.5.0 lib/phlex/icons/tabler/device_watch_stats.rb
phlex-icons-1.5.0 lib/phlex/icons/tabler/device_watch_stats.rb
phlex-icons-tabler-1.4.0 lib/phlex/icons/tabler/device_watch_stats.rb
phlex-icons-1.4.0 lib/phlex/icons/tabler/device_watch_stats.rb
phlex-icons-1.3.0 lib/phlex/icons/tabler/device_watch_stats.rb
phlex-icons-tabler-1.3.0 lib/phlex/icons/tabler/device_watch_stats.rb
phlex-icons-tabler-1.2.0 lib/phlex/icons/tabler/device_watch_stats.rb
phlex-icons-1.2.0 lib/phlex/icons/tabler/device_watch_stats.rb
phlex-icons-tabler-1.1.0 lib/phlex/icons/tabler/device_watch_stats.rb
phlex-icons-1.1.0 lib/phlex/icons/tabler/device_watch_stats.rb
phlex-icons-1.0.0 lib/phlex/icons/tabler/device_watch_stats.rb
phlex-icons-tabler-1.0.0 lib/phlex/icons/tabler/device_watch_stats.rb