Sha256: 59c9b614eb49b008c451cb61865613f3433a842018edaf276fa3f6f15ee2a760

Contents?: true

Size: 855 Bytes

Versions: 4

Compression:

Stored size: 855 Bytes

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Lucide
      class VenetianMask < 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: 'M18 11c-1.5 0-2.5.5-3 2')
            s.path(
              d:
                'M4 6a2 2 0 0 0-2 2v4a5 5 0 0 0 5 5 8 8 0 0 1 5 2 8 8 0 0 1 5-2 5 5 0 0 0 5-5V8a2 2 0 0 0-2-2h-3a8 8 0 0 0-5 2 8 8 0 0 0-5-2z'
            )
            s.path(d: 'M6 11c1.5 0 2.5.5 3 2')
          end
        end
      end
    end
  end
end
# rubocop:enable Layout/LineLength

Version data entries

4 entries across 4 versions & 2 rubygems

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