Sha256: bf2c5868105ad95031135e98b8d227dd7e4e90cc4a9aa38fdc379143e3a59724

Contents?: true

Size: 790 Bytes

Versions: 6

Compression:

Stored size: 790 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Icons
    module Tabler
      class BrandWhatsapp < 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: 'M3 21l1.65 -3.8a9 9 0 1 1 3.4 2.9l-5.05 .9')
            s.path(
              d:
                'M9 10a.5 .5 0 0 0 1 0v-1a.5 .5 0 0 0 -1 0v1a5 5 0 0 0 5 5h1a.5 .5 0 0 0 0 -1h-1a.5 .5 0 0 0 0 1'
            )
          end
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
phlex-icons-tabler-1.2.0 lib/phlex/icons/tabler/brand_whatsapp.rb
phlex-icons-1.2.0 lib/phlex/icons/tabler/brand_whatsapp.rb
phlex-icons-tabler-1.1.0 lib/phlex/icons/tabler/brand_whatsapp.rb
phlex-icons-1.1.0 lib/phlex/icons/tabler/brand_whatsapp.rb
phlex-icons-1.0.0 lib/phlex/icons/tabler/brand_whatsapp.rb
phlex-icons-tabler-1.0.0 lib/phlex/icons/tabler/brand_whatsapp.rb