Sha256: 47f191fe8d862b0df662192199287f80ab6264fe15a3fb164f7f6ab0ee3699c4

Contents?: true

Size: 740 Bytes

Versions: 26

Compression:

Stored size: 740 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Icons
    module Lucide
      class Angry < Base
        def view_template
          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.circle(cx: '12', cy: '12', r: '10')
            s.path(d: 'M16 16s-1.5-2-4-2-4 2-4 2')
            s.path(d: 'M7.5 8 10 9')
            s.path(d: 'm14 9 2.5-1')
            s.path(d: 'M9 10h.01')
            s.path(d: 'M15 10h.01')
          end
        end
      end
    end
  end
end

Version data entries

26 entries across 26 versions & 2 rubygems

Version Path
phlex-icons-lucide-0.6.0 lib/phlex/icons/lucide/angry.rb
phlex-icons-0.5.0 lib/phlex/icons/lucide/angry.rb
phlex-icons-0.4.0 lib/phlex/icons/lucide/angry.rb
phlex-icons-0.3.0 lib/phlex/icons/lucide/angry.rb
phlex-icons-0.2.0 lib/phlex/icons/lucide/angry.rb
phlex-icons-0.1.0 lib/phlex/icons/lucide/angry.rb