Sha256: b55d43e81fd5beac23685819db2a1d9195336647c267e0d2f016b18a78f53cef

Contents?: true

Size: 900 Bytes

Versions: 6

Compression:

Stored size: 900 Bytes

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class BrandWindows < 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:
                'M17.8 20l-12 -1.5c-1 -.1 -1.8 -.9 -1.8 -1.9v-9.2c0 -1 .8 -1.8 1.8 -1.9l12 -1.5c1.2 -.1 2.2 .8 2.2 1.9v12.1c0 1.2 -1.1 2.1 -2.2 1.9z'
            )
            s.path(d: 'M12 5l0 14')
            s.path(d: 'M4 12l16 0')
          end
        end
      end
    end
  end
end
# rubocop:enable Layout/LineLength

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
phlex-icons-tabler-1.2.0 lib/phlex/icons/tabler/brand_windows.rb
phlex-icons-1.2.0 lib/phlex/icons/tabler/brand_windows.rb
phlex-icons-tabler-1.1.0 lib/phlex/icons/tabler/brand_windows.rb
phlex-icons-1.1.0 lib/phlex/icons/tabler/brand_windows.rb
phlex-icons-1.0.0 lib/phlex/icons/tabler/brand_windows.rb
phlex-icons-tabler-1.0.0 lib/phlex/icons/tabler/brand_windows.rb