Sha256: be324c559c1199c841a89f20bfbc13ed7559c7e63bb43edceee5ffa4a13ed4f1

Contents?: true

Size: 1.19 KB

Versions: 14

Compression:

Stored size: 1.19 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class Briefcase2 < 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 2a3 3 0 0 1 3 3v1h2a3 3 0 0 1 3 3v9a3 3 0 0 1 -3 3h-14a3 3 0 0 1 -3 -3v-9a3 3 0 0 1 3 -3h2v-1a3 3 0 0 1 3 -3zm0 2h-4a1 1 0 0 0 -1 1v1h6v-1a1 1 0 0 0 -1 -1'
            )
          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:
                'M3 9a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-9z'
            )
            s.path(d: 'M8 7v-2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v2')
          end
        end
      end
    end
  end
end
# rubocop:enable Layout/LineLength

Version data entries

14 entries across 14 versions & 2 rubygems

Version Path
phlex-icons-tabler-1.6.0 lib/phlex/icons/tabler/briefcase_2.rb
phlex-icons-1.6.0 lib/phlex/icons/tabler/briefcase_2.rb
phlex-icons-tabler-1.5.0 lib/phlex/icons/tabler/briefcase_2.rb
phlex-icons-1.5.0 lib/phlex/icons/tabler/briefcase_2.rb
phlex-icons-tabler-1.4.0 lib/phlex/icons/tabler/briefcase_2.rb
phlex-icons-1.4.0 lib/phlex/icons/tabler/briefcase_2.rb
phlex-icons-1.3.0 lib/phlex/icons/tabler/briefcase_2.rb
phlex-icons-tabler-1.3.0 lib/phlex/icons/tabler/briefcase_2.rb
phlex-icons-tabler-1.2.0 lib/phlex/icons/tabler/briefcase_2.rb
phlex-icons-1.2.0 lib/phlex/icons/tabler/briefcase_2.rb
phlex-icons-tabler-1.1.0 lib/phlex/icons/tabler/briefcase_2.rb
phlex-icons-1.1.0 lib/phlex/icons/tabler/briefcase_2.rb
phlex-icons-1.0.0 lib/phlex/icons/tabler/briefcase_2.rb
phlex-icons-tabler-1.0.0 lib/phlex/icons/tabler/briefcase_2.rb