Sha256: 0f306b96e40bd7748ca926d694d2240498edb7a03890e6e3f06c4d3298b61546

Contents?: true

Size: 981 Bytes

Versions: 12

Compression:

Stored size: 981 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Icons
    module Tabler
      class Binary < 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: 'M11 10v-5h-1m8 14v-5h-1')
            s.path(
              d:
                'M15 5m0 .5a.5 .5 0 0 1 .5 -.5h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5z'
            )
            s.path(
              d:
                'M10 14m0 .5a.5 .5 0 0 1 .5 -.5h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5z'
            )
            s.path(d: 'M6 10h.01m-.01 9h.01')
          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/binary.rb
phlex-icons-0.17.0 lib/phlex/icons/tabler/binary.rb
phlex-icons-tabler-0.16.0 lib/phlex/icons/tabler/binary.rb
phlex-icons-0.16.0 lib/phlex/icons/tabler/binary.rb
phlex-icons-tabler-0.15.0 lib/phlex/icons/tabler/binary.rb
phlex-icons-0.15.0 lib/phlex/icons/tabler/binary.rb
phlex-icons-tabler-0.14.0 lib/phlex/icons/tabler/binary.rb
phlex-icons-0.14.0 lib/phlex/icons/tabler/binary.rb
phlex-icons-tabler-0.13.0 lib/phlex/icons/tabler/binary.rb
phlex-icons-0.13.0 lib/phlex/icons/tabler/binary.rb
phlex-icons-0.12.0 lib/phlex/icons/tabler/binary.rb
phlex-icons-tabler-0.12.0 lib/phlex/icons/tabler/binary.rb