Sha256: f264617c9f166db87bc60ba214dd724651f96b8dcf7ddb2d227ee60b3f43ba7d

Contents?: true

Size: 935 Bytes

Versions: 8

Compression:

Stored size: 935 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Icons
    module Tabler
      class ClipboardSearch < 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:
                'M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h4.5m7.5 -10v-4a2 2 0 0 0 -2 -2h-2'
            )
            s.path(
              d: 'M9 5a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2'
            )
            s.path(d: 'M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0')
            s.path(d: 'M20.2 20.2l1.8 1.8')
          end
        end
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
phlex-icons-tabler-1.8.0 lib/phlex/icons/tabler/clipboard_search.rb
phlex-icons-1.8.0 lib/phlex/icons/tabler/clipboard_search.rb
phlex-icons-1.7.0 lib/phlex/icons/tabler/clipboard_search.rb
phlex-icons-tabler-1.7.0 lib/phlex/icons/tabler/clipboard_search.rb
phlex-icons-tabler-1.6.0 lib/phlex/icons/tabler/clipboard_search.rb
phlex-icons-1.6.0 lib/phlex/icons/tabler/clipboard_search.rb
phlex-icons-tabler-1.5.0 lib/phlex/icons/tabler/clipboard_search.rb
phlex-icons-1.5.0 lib/phlex/icons/tabler/clipboard_search.rb