Sha256: b72ba8db6e7b08597ce7d3271e9a53e37dcec65f1808148d991c517a88652b0d

Contents?: true

Size: 661 Bytes

Versions: 3

Compression:

Stored size: 661 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Lucide
    class LampWallDownIcon < 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: "M11 13h6l3 7H8l3-7Z")
          s.path(d: "M14 13V8a2 2 0 0 0-2-2H8")
          s.path(d: "M4 9h2a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H4v6Z")
        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/lamp_wall_down_icon.rb
phlex-lucide-0.427.1 lib/phlex/lucide/icons/lamp_wall_down_icon.rb
phlex-lucide-0.427.0 lib/phlex/lucide/icons/lamp_wall_down_icon.rb