Sha256: bbf874e2a19894d0762908ad301c417dfec637724377d38d2921e3a8631b7648

Contents?: true

Size: 952 Bytes

Versions: 3

Compression:

Stored size: 952 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Lucide
    class FolderTreeIcon < 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:
              "M20 10a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1h-2.5a1 1 0 0 1-.8-.4l-.9-1.2A1 1 0 0 0 15 3h-2a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1Z"
          )
          s.path(
            d:
              "M20 21a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1h-2.9a1 1 0 0 1-.88-.55l-.42-.85a1 1 0 0 0-.92-.6H13a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1Z"
          )
          s.path(d: "M3 5a2 2 0 0 0 2 2h3")
          s.path(d: "M3 3v13a2 2 0 0 0 2 2h3")
        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/folder_tree_icon.rb
phlex-lucide-0.427.1 lib/phlex/lucide/icons/folder_tree_icon.rb
phlex-lucide-0.427.0 lib/phlex/lucide/icons/folder_tree_icon.rb