Sha256: bd46a8a92aba40252bf93787f49bf43bef7399091ca967b301a9a9b7085fe064

Contents?: true

Size: 715 Bytes

Versions: 14

Compression:

Stored size: 715 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Icons
    module Tabler
      class ClearFormatting < 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: 'M17 15l4 4m0 -4l-4 4')
            s.path(d: 'M7 6v-1h11v1')
            s.path(d: 'M7 19l4 0')
            s.path(d: 'M13 5l-4 14')
          end
        end
      end
    end
  end
end

Version data entries

14 entries across 14 versions & 2 rubygems

Version Path
phlex-icons-tabler-1.6.0 lib/phlex/icons/tabler/clear_formatting.rb
phlex-icons-1.6.0 lib/phlex/icons/tabler/clear_formatting.rb
phlex-icons-tabler-1.5.0 lib/phlex/icons/tabler/clear_formatting.rb
phlex-icons-1.5.0 lib/phlex/icons/tabler/clear_formatting.rb
phlex-icons-tabler-1.4.0 lib/phlex/icons/tabler/clear_formatting.rb
phlex-icons-1.4.0 lib/phlex/icons/tabler/clear_formatting.rb
phlex-icons-1.3.0 lib/phlex/icons/tabler/clear_formatting.rb
phlex-icons-tabler-1.3.0 lib/phlex/icons/tabler/clear_formatting.rb
phlex-icons-tabler-1.2.0 lib/phlex/icons/tabler/clear_formatting.rb
phlex-icons-1.2.0 lib/phlex/icons/tabler/clear_formatting.rb
phlex-icons-tabler-1.1.0 lib/phlex/icons/tabler/clear_formatting.rb
phlex-icons-1.1.0 lib/phlex/icons/tabler/clear_formatting.rb
phlex-icons-1.0.0 lib/phlex/icons/tabler/clear_formatting.rb
phlex-icons-tabler-1.0.0 lib/phlex/icons/tabler/clear_formatting.rb