Sha256: f311d5a7b2ed77f0a261e73422c41761595277a27a74ad35daa7a2e06828234f

Contents?: true

Size: 806 Bytes

Versions: 26

Compression:

Stored size: 806 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Icons
    module Lucide
      class BellElectric < 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.path(d: 'M18.8 4A6.3 8.7 0 0 1 20 9')
            s.path(d: 'M9 9h.01')
            s.circle(cx: '9', cy: '9', r: '7')
            s.rect(width: '10', height: '6', x: '4', y: '16', rx: '2')
            s.path(d: 'M14 19c3 0 4.6-1.6 4.6-1.6')
            s.circle(cx: '20', cy: '16', r: '2')
          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/bell_electric.rb
phlex-icons-0.5.0 lib/phlex/icons/lucide/bell_electric.rb
phlex-icons-0.4.0 lib/phlex/icons/lucide/bell_electric.rb
phlex-icons-0.3.0 lib/phlex/icons/lucide/bell_electric.rb
phlex-icons-0.2.0 lib/phlex/icons/lucide/bell_electric.rb
phlex-icons-0.1.0 lib/phlex/icons/lucide/bell_electric.rb