Sha256: 22e3552e671f5a389ea23d8162929e42b4602d75f718dd4e0ff444c6cffa9d5a

Contents?: true

Size: 667 Bytes

Versions: 3

Compression:

Stored size: 667 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Lucide
    class LogOutIcon < 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: "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4")
          s.polyline(points: "16 17 21 12 16 7")
          s.line(x1: "21", x2: "9", y1: "12", y2: "12")
        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/log_out_icon.rb
phlex-lucide-0.427.1 lib/phlex/lucide/icons/log_out_icon.rb
phlex-lucide-0.427.0 lib/phlex/lucide/icons/log_out_icon.rb