Sha256: c22c43874a4c2c6ff4f2f7e6f7dcc09b7846325187a8dd5c0083fb8adb8c75b3

Contents?: true

Size: 1.09 KB

Versions: 12

Compression:

Stored size: 1.09 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class Library < 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:
                'M7 3m0 2.667a2.667 2.667 0 0 1 2.667 -2.667h8.666a2.667 2.667 0 0 1 2.667 2.667v8.666a2.667 2.667 0 0 1 -2.667 2.667h-8.666a2.667 2.667 0 0 1 -2.667 -2.667z'
            )
            s.path(
              d:
                'M4.012 7.26a2.005 2.005 0 0 0 -1.012 1.737v10c0 1.1 .9 2 2 2h10c.75 0 1.158 -.385 1.5 -1'
            )
            s.path(d: 'M11 7h5')
            s.path(d: 'M11 10h6')
            s.path(d: 'M11 13h3')
          end
        end
      end
    end
  end
end
# rubocop:enable Layout/LineLength

Version data entries

12 entries across 12 versions & 2 rubygems

Version Path
phlex-icons-tabler-0.17.0 lib/phlex/icons/tabler/library.rb
phlex-icons-0.17.0 lib/phlex/icons/tabler/library.rb
phlex-icons-tabler-0.16.0 lib/phlex/icons/tabler/library.rb
phlex-icons-0.16.0 lib/phlex/icons/tabler/library.rb
phlex-icons-tabler-0.15.0 lib/phlex/icons/tabler/library.rb
phlex-icons-0.15.0 lib/phlex/icons/tabler/library.rb
phlex-icons-tabler-0.14.0 lib/phlex/icons/tabler/library.rb
phlex-icons-0.14.0 lib/phlex/icons/tabler/library.rb
phlex-icons-tabler-0.13.0 lib/phlex/icons/tabler/library.rb
phlex-icons-0.13.0 lib/phlex/icons/tabler/library.rb
phlex-icons-0.12.0 lib/phlex/icons/tabler/library.rb
phlex-icons-tabler-0.12.0 lib/phlex/icons/tabler/library.rb