Sha256: 5085c80e1c7474204c09f766e41d1d1f0674e8de9fa1eb4425ab24d45aed3bde

Contents?: true

Size: 640 Bytes

Versions: 6

Compression:

Stored size: 640 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Icons
    module Tabler
      class BrandKick < 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: 'M4 4h5v4h3v-2h2v-2h6v4h-2v2h-2v4h2v2h2v4h-6v-2h-2v-2h-3v4h-5z')
          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_kick.rb
phlex-icons-1.2.0 lib/phlex/icons/tabler/brand_kick.rb
phlex-icons-tabler-1.1.0 lib/phlex/icons/tabler/brand_kick.rb
phlex-icons-1.1.0 lib/phlex/icons/tabler/brand_kick.rb
phlex-icons-1.0.0 lib/phlex/icons/tabler/brand_kick.rb
phlex-icons-tabler-1.0.0 lib/phlex/icons/tabler/brand_kick.rb