Sha256: 73ff14a0e6a59fc44b3de10790a779432b183e6888ac4a2145e5d1c18f798010

Contents?: true

Size: 994 Bytes

Versions: 12

Compression:

Stored size: 994 Bytes

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class BasketCheck < 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: 'M17 10l-2 -6')
            s.path(d: 'M7 10l2 -6')
            s.path(
              d:
                'M11 20h-3.756a3 3 0 0 1 -2.965 -2.544l-1.255 -7.152a2 2 0 0 1 1.977 -2.304h13.999a2 2 0 0 1 1.977 2.304l-.479 2.729'
            )
            s.path(d: 'M10 14a2 2 0 1 0 4 0a2 2 0 0 0 -4 0')
            s.path(d: 'M15 19l2 2l4 -4')
          end
        end
      end
    end
  end
end
# rubocop:enable Layout/LineLength

Version data entries

12 entries across 12 versions & 2 rubygems

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