Sha256: 8d04a137857946d184902259d058141eb26d827fe1a329be9b97c9c38d96e688

Contents?: true

Size: 1.18 KB

Versions: 8

Compression:

Stored size: 1.18 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class BrandTumblr < Base
        def filled
          svg(
            **attrs,
            xmlns: 'http://www.w3.org/2000/svg',
            viewbox: '0 0 24 24',
            fill: 'currentColor'
          ) do |s|
            s.path(
              d:
                'M14 2a1 1 0 0 1 1 1v3h3a1 1 0 0 1 .993 .883l.007 .117v4a1 1 0 0 1 -1 1h-3v4h3a1 1 0 0 1 .993 .883l.007 .117v4a1 1 0 0 1 -1 1h-4a5 5 0 0 1 -5 -5v-5h-3a1 1 0 0 1 -.993 -.883l-.007 -.117v-4a1 1 0 0 1 1 -1h1a2 2 0 0 0 2 -2v-1a1 1 0 0 1 1 -1z'
            )
          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: 'M14 21h4v-4h-4v-6h4v-4h-4v-4h-4v1a3 3 0 0 1 -3 3h-1v4h4v6a4 4 0 0 0 4 4'
            )
          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_tumblr.rb
phlex-icons-1.6.0 lib/phlex/icons/tabler/brand_tumblr.rb
phlex-icons-tabler-1.5.0 lib/phlex/icons/tabler/brand_tumblr.rb
phlex-icons-1.5.0 lib/phlex/icons/tabler/brand_tumblr.rb
phlex-icons-tabler-1.4.0 lib/phlex/icons/tabler/brand_tumblr.rb
phlex-icons-1.4.0 lib/phlex/icons/tabler/brand_tumblr.rb
phlex-icons-1.3.0 lib/phlex/icons/tabler/brand_tumblr.rb
phlex-icons-tabler-1.3.0 lib/phlex/icons/tabler/brand_tumblr.rb