Sha256: c7a4fd6b7c6c6129016577f0dcc7311d6bbb9a2b663c9fa712577c94946bfd62

Contents?: true

Size: 1011 Bytes

Versions: 12

Compression:

Stored size: 1011 Bytes

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class CopyOff < 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:
                'M19.414 19.415a2 2 0 0 1 -1.414 .585h-8a2 2 0 0 1 -2 -2v-8c0 -.554 .225 -1.055 .589 -1.417m3.411 -.583h6a2 2 0 0 1 2 2v6'
            )
            s.path(
              d:
                'M16 8v-2a2 2 0 0 0 -2 -2h-6m-3.418 .59c-.36 .36 -.582 .86 -.582 1.41v8a2 2 0 0 0 2 2h2'
            )
            s.path(d: 'M3 3l18 18')
          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/copy_off.rb
phlex-icons-0.17.0 lib/phlex/icons/tabler/copy_off.rb
phlex-icons-tabler-0.16.0 lib/phlex/icons/tabler/copy_off.rb
phlex-icons-0.16.0 lib/phlex/icons/tabler/copy_off.rb
phlex-icons-tabler-0.15.0 lib/phlex/icons/tabler/copy_off.rb
phlex-icons-0.15.0 lib/phlex/icons/tabler/copy_off.rb
phlex-icons-tabler-0.14.0 lib/phlex/icons/tabler/copy_off.rb
phlex-icons-0.14.0 lib/phlex/icons/tabler/copy_off.rb
phlex-icons-tabler-0.13.0 lib/phlex/icons/tabler/copy_off.rb
phlex-icons-0.13.0 lib/phlex/icons/tabler/copy_off.rb
phlex-icons-0.12.0 lib/phlex/icons/tabler/copy_off.rb
phlex-icons-tabler-0.12.0 lib/phlex/icons/tabler/copy_off.rb