Sha256: 37b702580b01247349fa9d0ee6129611ee9fe4cda7358f3031a08bf6958bf209

Contents?: true

Size: 1.27 KB

Versions: 8

Compression:

Stored size: 1.27 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class BrandInstagram < Base
        def filled
          svg(
            **attrs,
            xmlns: 'http://www.w3.org/2000/svg',
            viewbox: '0 0 24 24',
            fill: 'currentColor'
          ) do |s|
            s.path(
              d:
                'M16 3a5 5 0 0 1 5 5v8a5 5 0 0 1 -5 5h-8a5 5 0 0 1 -5 -5v-8a5 5 0 0 1 5 -5zm-4 5a4 4 0 0 0 -3.995 3.8l-.005 .2a4 4 0 1 0 4 -4m4.5 -1.5a1 1 0 0 0 -.993 .883l-.007 .127a1 1 0 0 0 1.993 .117l.007 -.127a1 1 0 0 0 -1 -1'
            )
          end
        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:
                'M4 8a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z'
            )
            s.path(d: 'M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0')
            s.path(d: 'M16.5 7.5v.01')
          end
        end
      end
    end
  end
end
# rubocop:enable Layout/LineLength

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
phlex-icons-tabler-1.6.0 lib/phlex/icons/tabler/brand_instagram.rb
phlex-icons-1.6.0 lib/phlex/icons/tabler/brand_instagram.rb
phlex-icons-tabler-1.5.0 lib/phlex/icons/tabler/brand_instagram.rb
phlex-icons-1.5.0 lib/phlex/icons/tabler/brand_instagram.rb
phlex-icons-tabler-1.4.0 lib/phlex/icons/tabler/brand_instagram.rb
phlex-icons-1.4.0 lib/phlex/icons/tabler/brand_instagram.rb
phlex-icons-1.3.0 lib/phlex/icons/tabler/brand_instagram.rb
phlex-icons-tabler-1.3.0 lib/phlex/icons/tabler/brand_instagram.rb