Sha256: 0a96c9256a068acb0bb91f8f4fab7b661b95254fc35d182bbb5d60d5b8ba5eac

Contents?: true

Size: 771 Bytes

Versions: 14

Compression:

Stored size: 771 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Icons
    module Tabler
      class DevicesPc < 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: 'M3 5h6v14h-6z')
            s.path(d: 'M12 9h10v7h-10z')
            s.path(d: 'M14 19h6')
            s.path(d: 'M17 16v3')
            s.path(d: 'M6 13v.01')
            s.path(d: 'M6 16v.01')
          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/devices_pc.rb
phlex-icons-1.6.0 lib/phlex/icons/tabler/devices_pc.rb
phlex-icons-tabler-1.5.0 lib/phlex/icons/tabler/devices_pc.rb
phlex-icons-1.5.0 lib/phlex/icons/tabler/devices_pc.rb
phlex-icons-tabler-1.4.0 lib/phlex/icons/tabler/devices_pc.rb
phlex-icons-1.4.0 lib/phlex/icons/tabler/devices_pc.rb
phlex-icons-1.3.0 lib/phlex/icons/tabler/devices_pc.rb
phlex-icons-tabler-1.3.0 lib/phlex/icons/tabler/devices_pc.rb
phlex-icons-tabler-1.2.0 lib/phlex/icons/tabler/devices_pc.rb
phlex-icons-1.2.0 lib/phlex/icons/tabler/devices_pc.rb
phlex-icons-tabler-1.1.0 lib/phlex/icons/tabler/devices_pc.rb
phlex-icons-1.1.0 lib/phlex/icons/tabler/devices_pc.rb
phlex-icons-1.0.0 lib/phlex/icons/tabler/devices_pc.rb
phlex-icons-tabler-1.0.0 lib/phlex/icons/tabler/devices_pc.rb