Sha256: 7332ebdc14276815da34f3bc8ddac7929e6ce366249ba87bcebcefb516121c30

Contents?: true

Size: 848 Bytes

Versions: 14

Compression:

Stored size: 848 Bytes

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Lucide
      class Tag < Base
        def view_template
          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:
                'M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z'
            )
            s.circle(cx: '7.5', cy: '7.5', r: '.5', fill: 'currentColor')
          end
        end
      end
    end
  end
end
# rubocop:enable Layout/LineLength

Version data entries

14 entries across 14 versions & 2 rubygems

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