Sha256: c82e77ecac73f029e89d3171ba0c23ea5bebad958718ce8c0a76a3d727b590de

Contents?: true

Size: 967 Bytes

Versions: 10

Compression:

Stored size: 967 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Icons
    module Tabler
      class Blender < Base
        def filled
          raise NotImplementedError
        end

        def outline
          svg(
            class: classes,
            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:
                'M9 10h-3a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h10.802a1 1 0 0 1 .984 1.179l-1.786 9.821'
            )
            s.path(d: 'M8 4l2 11')
            s.path(
              d:
                'M11 15h4a3 3 0 0 1 3 3v2a1 1 0 0 1 -1 1h-8a1 1 0 0 1 -1 -1v-2a3 3 0 0 1 3 -3z'
            )
            s.path(d: 'M12 4v-1h2v1')
            s.path(d: 'M13 18v.01')
          end
        end
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
phlex-icons-tabler-0.16.0 lib/phlex/icons/tabler/blender.rb
phlex-icons-0.16.0 lib/phlex/icons/tabler/blender.rb
phlex-icons-tabler-0.15.0 lib/phlex/icons/tabler/blender.rb
phlex-icons-0.15.0 lib/phlex/icons/tabler/blender.rb
phlex-icons-tabler-0.14.0 lib/phlex/icons/tabler/blender.rb
phlex-icons-0.14.0 lib/phlex/icons/tabler/blender.rb
phlex-icons-tabler-0.13.0 lib/phlex/icons/tabler/blender.rb
phlex-icons-0.13.0 lib/phlex/icons/tabler/blender.rb
phlex-icons-0.12.0 lib/phlex/icons/tabler/blender.rb
phlex-icons-tabler-0.12.0 lib/phlex/icons/tabler/blender.rb