Sha256: 3e772df78b51493930d10e5925289551bdbcb188cad21f26a690d6945ddd7c7b

Contents?: true

Size: 1.58 KB

Versions: 12

Compression:

Stored size: 1.58 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class Bath < 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:
                'M11 2a1 1 0 0 1 .993 .883l.007 .117v2.25a1 1 0 0 1 -1.993 .117l-.007 -.117v-1.25h-2a1 1 0 0 0 -.993 .883l-.007 .117v6h13a2 2 0 0 1 1.995 1.85l.005 .15v3c0 1.475 -.638 2.8 -1.654 3.715l.486 .73a1 1 0 0 1 -1.594 1.203l-.07 -.093l-.55 -.823a4.98 4.98 0 0 1 -1.337 .26l-.281 .008h-10a4.994 4.994 0 0 1 -1.619 -.268l-.549 .823a1 1 0 0 1 -1.723 -1.009l.059 -.1l.486 -.73a4.987 4.987 0 0 1 -1.647 -3.457l-.007 -.259v-3a2 2 0 0 1 1.85 -1.995l.15 -.005h1v-6a3 3 0 0 1 2.824 -2.995l.176 -.005h3z'
            )
          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:
                'M4 12h16a1 1 0 0 1 1 1v3a4 4 0 0 1 -4 4h-10a4 4 0 0 1 -4 -4v-3a1 1 0 0 1 1 -1z'
            )
            s.path(d: 'M6 12v-7a2 2 0 0 1 2 -2h3v2.25')
            s.path(d: 'M4 21l1 -1.5')
            s.path(d: 'M20 21l-1 -1.5')
          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/bath.rb
phlex-icons-0.17.0 lib/phlex/icons/tabler/bath.rb
phlex-icons-tabler-0.16.0 lib/phlex/icons/tabler/bath.rb
phlex-icons-0.16.0 lib/phlex/icons/tabler/bath.rb
phlex-icons-tabler-0.15.0 lib/phlex/icons/tabler/bath.rb
phlex-icons-0.15.0 lib/phlex/icons/tabler/bath.rb
phlex-icons-tabler-0.14.0 lib/phlex/icons/tabler/bath.rb
phlex-icons-0.14.0 lib/phlex/icons/tabler/bath.rb
phlex-icons-tabler-0.13.0 lib/phlex/icons/tabler/bath.rb
phlex-icons-0.13.0 lib/phlex/icons/tabler/bath.rb
phlex-icons-0.12.0 lib/phlex/icons/tabler/bath.rb
phlex-icons-tabler-0.12.0 lib/phlex/icons/tabler/bath.rb