Sha256: 6912380fea5d0174ccbb4933a12c8a1cc6aa9cf25bc479383ad43895730e06ed

Contents?: true

Size: 794 Bytes

Versions: 3

Compression:

Stored size: 794 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Lucide
    class BaggageClaimIcon < Phlex::Lucide::Icon
      def view_template
        svg(
          xmlns: "http://www.w3.org/2000/svg",
          width: size,
          height: size,
          viewbox: "0 0 24 24",
          fill: "none",
          stroke: "currentColor",
          stroke_width: "2",
          stroke_linecap: "round",
          stroke_linejoin: "round",
          **props
        ) do |s|
          s.path(d: "M22 18H6a2 2 0 0 1-2-2V7a2 2 0 0 0-2-2")
          s.path(d: "M17 14V4a2 2 0 0 0-2-2h-1a2 2 0 0 0-2 2v10")
          s.rect(width: "13", height: "8", x: "8", y: "6", rx: "1")
          s.circle(cx: "18", cy: "20", r: "2")
          s.circle(cx: "9", cy: "20", r: "2")
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
phlex-lucide-0.428.0 lib/phlex/lucide/icons/baggage_claim_icon.rb
phlex-lucide-0.427.1 lib/phlex/lucide/icons/baggage_claim_icon.rb
phlex-lucide-0.427.0 lib/phlex/lucide/icons/baggage_claim_icon.rb