Sha256: a70d9033c159aa1c19d7c606ca149dfb0a513ead2ec810314dda5044ace64d15

Contents?: true

Size: 953 Bytes

Versions: 12

Compression:

Stored size: 953 Bytes

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class BatteryExclamation < Base
        def filled
          raise NotImplementedError
        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:
                'M9 17h8c1.105 0 2 -.895 2 -2v-.5c0 -.276 .224 -.5 .5 -.5s.5 -.224 .5 -.5v-3c0 -.276 -.224 -.5 -.5 -.5s-.5 -.224 -.5 -.5v-.5c0 -1.105 -.895 -2 -2 -2h-11c-1.105 0 -2 .895 -2 2v3'
            )
            s.path(d: 'M5 16v3')
            s.path(d: 'M5 22v.01')
          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/battery_exclamation.rb
phlex-icons-0.17.0 lib/phlex/icons/tabler/battery_exclamation.rb
phlex-icons-tabler-0.16.0 lib/phlex/icons/tabler/battery_exclamation.rb
phlex-icons-0.16.0 lib/phlex/icons/tabler/battery_exclamation.rb
phlex-icons-tabler-0.15.0 lib/phlex/icons/tabler/battery_exclamation.rb
phlex-icons-0.15.0 lib/phlex/icons/tabler/battery_exclamation.rb
phlex-icons-tabler-0.14.0 lib/phlex/icons/tabler/battery_exclamation.rb
phlex-icons-0.14.0 lib/phlex/icons/tabler/battery_exclamation.rb
phlex-icons-tabler-0.13.0 lib/phlex/icons/tabler/battery_exclamation.rb
phlex-icons-0.13.0 lib/phlex/icons/tabler/battery_exclamation.rb
phlex-icons-0.12.0 lib/phlex/icons/tabler/battery_exclamation.rb
phlex-icons-tabler-0.12.0 lib/phlex/icons/tabler/battery_exclamation.rb