Sha256: 0aa2a5f3829df7629bac713d379be87145e0f7fb9ff3d6ad8564b95601e0c3a0

Contents?: true

Size: 1.93 KB

Versions: 12

Compression:

Stored size: 1.93 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class BellZ < Base
        def filled
          svg(
            class: classes,
            xmlns: 'http://www.w3.org/2000/svg',
            viewbox: '0 0 24 24',
            fill: 'currentColor'
          ) do |s|
            s.path(
              d:
                'M14.235 19c.865 0 1.322 1.024 .745 1.668a3.992 3.992 0 0 1 -2.98 1.332a3.992 3.992 0 0 1 -2.98 -1.332c-.552 -.616 -.158 -1.579 .634 -1.661l.11 -.006h4.471z'
            )
            s.path(
              d:
                'M12 2c1.358 0 2.506 .903 2.875 2.141l.046 .171l.008 .043a8.013 8.013 0 0 1 4.024 6.069l.028 .287l.019 .289v2.931l.021 .136a3 3 0 0 0 1.143 1.847l.167 .117l.162 .099c.86 .487 .56 1.766 -.377 1.864l-.116 .006h-16c-1.028 0 -1.387 -1.364 -.493 -1.87a3 3 0 0 0 1.472 -2.063l.021 -.143l.001 -2.97a8 8 0 0 1 3.821 -6.454l.248 -.146l.01 -.043a3.003 3.003 0 0 1 2.562 -2.29l.182 -.017l.176 -.004zm2 6h-4l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h1.584l-2.291 2.293l-.076 .084c-.514 .637 -.07 1.623 .783 1.623h4l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-1.586l2.293 -2.293l.076 -.084c.514 -.637 .07 -1.623 -.783 -1.623z'
            )
          end
        end

        def outline
          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:
                'M10 5a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6'
            )
            s.path(d: 'M9 17v1a3 3 0 0 0 6 0v-1')
            s.path(d: 'M10 9h4l-4 4h4')
          end
        end
      end
    end
  end
end
# rubocop:enable Layout/LineLength

Version data entries

12 entries across 12 versions & 2 rubygems

Version Path
phlex-icons-tabler-0.17.0 lib/phlex/icons/tabler/bell_z.rb
phlex-icons-0.17.0 lib/phlex/icons/tabler/bell_z.rb
phlex-icons-tabler-0.16.0 lib/phlex/icons/tabler/bell_z.rb
phlex-icons-0.16.0 lib/phlex/icons/tabler/bell_z.rb
phlex-icons-tabler-0.15.0 lib/phlex/icons/tabler/bell_z.rb
phlex-icons-0.15.0 lib/phlex/icons/tabler/bell_z.rb
phlex-icons-tabler-0.14.0 lib/phlex/icons/tabler/bell_z.rb
phlex-icons-0.14.0 lib/phlex/icons/tabler/bell_z.rb
phlex-icons-tabler-0.13.0 lib/phlex/icons/tabler/bell_z.rb
phlex-icons-0.13.0 lib/phlex/icons/tabler/bell_z.rb
phlex-icons-0.12.0 lib/phlex/icons/tabler/bell_z.rb
phlex-icons-tabler-0.12.0 lib/phlex/icons/tabler/bell_z.rb