Sha256: eec05414dfbdabcb30f42856ebdbbaae14a7c2b6151923bc5bbeb9a574204291

Contents?: true

Size: 962 Bytes

Versions: 12

Compression:

Stored size: 962 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Icons
    module Tabler
      class FileTypeDoc < 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: 'M14 3v4a1 1 0 0 0 1 1h4')
            s.path(d: 'M5 12v-7a2 2 0 0 1 2 -2h7l5 5v4')
            s.path(d: 'M5 15v6h1a2 2 0 0 0 2 -2v-2a2 2 0 0 0 -2 -2h-1z')
            s.path(d: 'M20 16.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0')
            s.path(
              d:
                'M12.5 15a1.5 1.5 0 0 1 1.5 1.5v3a1.5 1.5 0 0 1 -3 0v-3a1.5 1.5 0 0 1 1.5 -1.5z'
            )
          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/file_type_doc.rb
phlex-icons-0.17.0 lib/phlex/icons/tabler/file_type_doc.rb
phlex-icons-tabler-0.16.0 lib/phlex/icons/tabler/file_type_doc.rb
phlex-icons-0.16.0 lib/phlex/icons/tabler/file_type_doc.rb
phlex-icons-tabler-0.15.0 lib/phlex/icons/tabler/file_type_doc.rb
phlex-icons-0.15.0 lib/phlex/icons/tabler/file_type_doc.rb
phlex-icons-tabler-0.14.0 lib/phlex/icons/tabler/file_type_doc.rb
phlex-icons-0.14.0 lib/phlex/icons/tabler/file_type_doc.rb
phlex-icons-tabler-0.13.0 lib/phlex/icons/tabler/file_type_doc.rb
phlex-icons-0.13.0 lib/phlex/icons/tabler/file_type_doc.rb
phlex-icons-0.12.0 lib/phlex/icons/tabler/file_type_doc.rb
phlex-icons-tabler-0.12.0 lib/phlex/icons/tabler/file_type_doc.rb