Sha256: 1982d6686e682668f455f9ef2a26edce1319974f97a687f282fe68c3cf35ed34

Contents?: true

Size: 1.53 KB

Versions: 14

Compression:

Stored size: 1.53 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class Headphones < Base
        def filled
          svg(
            **attrs,
            xmlns: 'http://www.w3.org/2000/svg',
            viewbox: '0 0 24 24',
            fill: 'currentColor'
          ) do |s|
            s.path(
              d:
                'M21 18a3 3 0 0 1 -2.824 2.995l-.176 .005h-1a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-3a3 3 0 0 1 2.824 -2.995l.176 -.005h1c.351 0 .688 .06 1 .171v-.171a7 7 0 0 0 -13.996 -.24l-.004 .24v.17c.25 -.088 .516 -.144 .791 -.163l.209 -.007h1a3 3 0 0 1 2.995 2.824l.005 .176v3a3 3 0 0 1 -2.824 2.995l-.176 .005h-1a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-6a9 9 0 0 1 17.996 -.265l.004 .265v6z'
            )
          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:
                'M4 13m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z'
            )
            s.path(
              d:
                'M15 13m0 2a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2z'
            )
            s.path(d: 'M4 15v-3a8 8 0 0 1 16 0v3')
          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/headphones.rb
phlex-icons-1.6.0 lib/phlex/icons/tabler/headphones.rb
phlex-icons-tabler-1.5.0 lib/phlex/icons/tabler/headphones.rb
phlex-icons-1.5.0 lib/phlex/icons/tabler/headphones.rb
phlex-icons-tabler-1.4.0 lib/phlex/icons/tabler/headphones.rb
phlex-icons-1.4.0 lib/phlex/icons/tabler/headphones.rb
phlex-icons-1.3.0 lib/phlex/icons/tabler/headphones.rb
phlex-icons-tabler-1.3.0 lib/phlex/icons/tabler/headphones.rb
phlex-icons-tabler-1.2.0 lib/phlex/icons/tabler/headphones.rb
phlex-icons-1.2.0 lib/phlex/icons/tabler/headphones.rb
phlex-icons-tabler-1.1.0 lib/phlex/icons/tabler/headphones.rb
phlex-icons-1.1.0 lib/phlex/icons/tabler/headphones.rb
phlex-icons-1.0.0 lib/phlex/icons/tabler/headphones.rb
phlex-icons-tabler-1.0.0 lib/phlex/icons/tabler/headphones.rb