Sha256: cd4b41c0f5496909312568b5001365fabc2c8ca0d8c1ea6a5332cf9afc94a12e

Contents?: true

Size: 1.51 KB

Versions: 12

Compression:

Stored size: 1.51 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class Briefcase < 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:
                'M22 13.478v4.522a3 3 0 0 1 -3 3h-14a3 3 0 0 1 -3 -3v-4.522l.553 .277a20.999 20.999 0 0 0 18.897 -.002l.55 -.275zm-8 -11.478a3 3 0 0 1 3 3v1h2a3 3 0 0 1 3 3v2.242l-1.447 .724a19.002 19.002 0 0 1 -16.726 .186l-.647 -.32l-1.18 -.59v-2.242a3 3 0 0 1 3 -3h2v-1a3 3 0 0 1 3 -3h4zm-2 8a1 1 0 0 0 -1 1a1 1 0 1 0 2 .01c0 -.562 -.448 -1.01 -1 -1.01zm2 -6h-4a1 1 0 0 0 -1 1v1h6v-1a1 1 0 0 0 -1 -1z'
            )
          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:
                'M3 7m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v9a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z'
            )
            s.path(d: 'M8 7v-2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v2')
            s.path(d: 'M12 12l0 .01')
            s.path(d: 'M3 13a20 20 0 0 0 18 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/briefcase.rb
phlex-icons-0.17.0 lib/phlex/icons/tabler/briefcase.rb
phlex-icons-tabler-0.16.0 lib/phlex/icons/tabler/briefcase.rb
phlex-icons-0.16.0 lib/phlex/icons/tabler/briefcase.rb
phlex-icons-tabler-0.15.0 lib/phlex/icons/tabler/briefcase.rb
phlex-icons-0.15.0 lib/phlex/icons/tabler/briefcase.rb
phlex-icons-tabler-0.14.0 lib/phlex/icons/tabler/briefcase.rb
phlex-icons-0.14.0 lib/phlex/icons/tabler/briefcase.rb
phlex-icons-tabler-0.13.0 lib/phlex/icons/tabler/briefcase.rb
phlex-icons-0.13.0 lib/phlex/icons/tabler/briefcase.rb
phlex-icons-0.12.0 lib/phlex/icons/tabler/briefcase.rb
phlex-icons-tabler-0.12.0 lib/phlex/icons/tabler/briefcase.rb