Sha256: 6f8d7e3de46803a50840c0a2fa93c58c81bd7cfc0a496ced64efadd129656a56

Contents?: true

Size: 1 KB

Versions: 12

Compression:

Stored size: 1 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class BatteryCharging2 < 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:
                'M4 9a2 2 0 0 1 2 -2h11a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-4.5'
            )
            s.path(d: 'M3 15h6v2a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2v-2z')
            s.path(d: 'M6 22v-3')
            s.path(d: 'M4 15v-2.5')
            s.path(d: 'M8 15v-2.5')
          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_charging_2.rb
phlex-icons-0.17.0 lib/phlex/icons/tabler/battery_charging_2.rb
phlex-icons-tabler-0.16.0 lib/phlex/icons/tabler/battery_charging_2.rb
phlex-icons-0.16.0 lib/phlex/icons/tabler/battery_charging_2.rb
phlex-icons-tabler-0.15.0 lib/phlex/icons/tabler/battery_charging_2.rb
phlex-icons-0.15.0 lib/phlex/icons/tabler/battery_charging_2.rb
phlex-icons-tabler-0.14.0 lib/phlex/icons/tabler/battery_charging_2.rb
phlex-icons-0.14.0 lib/phlex/icons/tabler/battery_charging_2.rb
phlex-icons-tabler-0.13.0 lib/phlex/icons/tabler/battery_charging_2.rb
phlex-icons-0.13.0 lib/phlex/icons/tabler/battery_charging_2.rb
phlex-icons-0.12.0 lib/phlex/icons/tabler/battery_charging_2.rb
phlex-icons-tabler-0.12.0 lib/phlex/icons/tabler/battery_charging_2.rb