Sha256: 787b52d461718ff2f1b6f15e4bdaa0b4d48b4021475eb5d18f662a16b286fb6b

Contents?: true

Size: 833 Bytes

Versions: 6

Compression:

Stored size: 833 Bytes

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Lucide
      class Toilet < Base
        def view_template
          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:
                'M7 12h13a1 1 0 0 1 1 1 5 5 0 0 1-5 5h-.598a.5.5 0 0 0-.424.765l1.544 2.47a.5.5 0 0 1-.424.765H5.402a.5.5 0 0 1-.424-.765L7 18'
            )
            s.path(d: 'M8 18a5 5 0 0 1-5-5V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v8')
          end
        end
      end
    end
  end
end
# rubocop:enable Layout/LineLength

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
phlex-icons-lucide-1.8.0 lib/phlex/icons/lucide/toilet.rb
phlex-icons-1.8.0 lib/phlex/icons/lucide/toilet.rb
phlex-icons-1.7.0 lib/phlex/icons/lucide/toilet.rb
phlex-icons-lucide-1.7.0 lib/phlex/icons/lucide/toilet.rb
phlex-icons-1.6.0 lib/phlex/icons/lucide/toilet.rb
phlex-icons-lucide-1.6.0 lib/phlex/icons/lucide/toilet.rb