Sha256: c6fcb88ae2ccce5950031f2a2a45e3f19bc8e5199992ceb618d196b58eded281

Contents?: true

Size: 830 Bytes

Versions: 14

Compression:

Stored size: 830 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Icons
    module Tabler
      class BellDown < 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:
                'M12.5 17h-8.5a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6a2 2 0 1 1 4 0a7 7 0 0 1 4 6v1'
            )
            s.path(d: 'M9 17v1a3 3 0 0 0 3.518 2.955')
            s.path(d: 'M19 16v6')
            s.path(d: 'M22 19l-3 3l-3 -3')
          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/bell_down.rb
phlex-icons-1.6.0 lib/phlex/icons/tabler/bell_down.rb
phlex-icons-tabler-1.5.0 lib/phlex/icons/tabler/bell_down.rb
phlex-icons-1.5.0 lib/phlex/icons/tabler/bell_down.rb
phlex-icons-tabler-1.4.0 lib/phlex/icons/tabler/bell_down.rb
phlex-icons-1.4.0 lib/phlex/icons/tabler/bell_down.rb
phlex-icons-1.3.0 lib/phlex/icons/tabler/bell_down.rb
phlex-icons-tabler-1.3.0 lib/phlex/icons/tabler/bell_down.rb
phlex-icons-tabler-1.2.0 lib/phlex/icons/tabler/bell_down.rb
phlex-icons-1.2.0 lib/phlex/icons/tabler/bell_down.rb
phlex-icons-tabler-1.1.0 lib/phlex/icons/tabler/bell_down.rb
phlex-icons-1.1.0 lib/phlex/icons/tabler/bell_down.rb
phlex-icons-1.0.0 lib/phlex/icons/tabler/bell_down.rb
phlex-icons-tabler-1.0.0 lib/phlex/icons/tabler/bell_down.rb