Sha256: e819fe619c207824e1eae689efeb951b0caf3d5cd9545d7b004bb7231f783f35

Contents?: true

Size: 908 Bytes

Versions: 10

Compression:

Stored size: 908 Bytes

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class Ghost3 < 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:
                'M5 11a7 7 0 0 1 14 0v7a1.78 1.78 0 0 1 -3.1 1.4a1.65 1.65 0 0 0 -2.6 0a1.65 1.65 0 0 1 -2.6 0a1.65 1.65 0 0 0 -2.6 0a1.78 1.78 0 0 1 -3.1 -1.4v-7'
            )
            s.path(d: 'M10 10h.01')
            s.path(d: 'M14 10h.01')
          end
        end
      end
    end
  end
end
# rubocop:enable Layout/LineLength

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
phlex-icons-tabler-1.4.0 lib/phlex/icons/tabler/ghost_3.rb
phlex-icons-1.4.0 lib/phlex/icons/tabler/ghost_3.rb
phlex-icons-1.3.0 lib/phlex/icons/tabler/ghost_3.rb
phlex-icons-tabler-1.3.0 lib/phlex/icons/tabler/ghost_3.rb
phlex-icons-tabler-1.2.0 lib/phlex/icons/tabler/ghost_3.rb
phlex-icons-1.2.0 lib/phlex/icons/tabler/ghost_3.rb
phlex-icons-tabler-1.1.0 lib/phlex/icons/tabler/ghost_3.rb
phlex-icons-1.1.0 lib/phlex/icons/tabler/ghost_3.rb
phlex-icons-1.0.0 lib/phlex/icons/tabler/ghost_3.rb
phlex-icons-tabler-1.0.0 lib/phlex/icons/tabler/ghost_3.rb