Sha256: c97ff915ddfc1f75ef55b0c60145dfbc2f8e0df95f18c32e0f29bf2a1a4e2f95

Contents?: true

Size: 1.43 KB

Versions: 12

Compression:

Stored size: 1.43 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class Shirt < Base
        def filled
          svg(
            class: classes,
            xmlns: 'http://www.w3.org/2000/svg',
            viewbox: '0 0 24 24',
            fill: 'currentColor'
          ) do |s|
            s.path(
              d:
                'M14.883 3.007l.095 -.007l.112 .004l.113 .017l.113 .03l6 2a1 1 0 0 1 .677 .833l.007 .116v5a1 1 0 0 1 -.883 .993l-.117 .007h-2v7a2 2 0 0 1 -1.85 1.995l-.15 .005h-10a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-7h-2a1 1 0 0 1 -.993 -.883l-.007 -.117v-5a1 1 0 0 1 .576 -.906l.108 -.043l6 -2a1 1 0 0 1 1.316 .949a2 2 0 0 0 3.995 .15l.009 -.24l.017 -.113l.037 -.134l.044 -.103l.05 -.092l.068 -.093l.069 -.08c.056 -.054 .113 -.1 .175 -.14l.096 -.053l.103 -.044l.108 -.032l.112 -.02z'
            )
          end
        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:
                'M15 4l6 2v5h-3v8a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1v-8h-3v-5l6 -2a3 3 0 0 0 6 0'
            )
          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/shirt.rb
phlex-icons-0.17.0 lib/phlex/icons/tabler/shirt.rb
phlex-icons-tabler-0.16.0 lib/phlex/icons/tabler/shirt.rb
phlex-icons-0.16.0 lib/phlex/icons/tabler/shirt.rb
phlex-icons-tabler-0.15.0 lib/phlex/icons/tabler/shirt.rb
phlex-icons-0.15.0 lib/phlex/icons/tabler/shirt.rb
phlex-icons-tabler-0.14.0 lib/phlex/icons/tabler/shirt.rb
phlex-icons-0.14.0 lib/phlex/icons/tabler/shirt.rb
phlex-icons-tabler-0.13.0 lib/phlex/icons/tabler/shirt.rb
phlex-icons-0.13.0 lib/phlex/icons/tabler/shirt.rb
phlex-icons-0.12.0 lib/phlex/icons/tabler/shirt.rb
phlex-icons-tabler-0.12.0 lib/phlex/icons/tabler/shirt.rb