Sha256: 4b7225119b96ffc4f65ab30765ff8aaf5cdf9ffad4fcc46d17af924ca7e8e23f

Contents?: true

Size: 770 Bytes

Versions: 3

Compression:

Stored size: 770 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Lucide
    class FolderCodeIcon < 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: "M10 10.5 8 13l2 2.5")
          s.path(d: "m14 10.5 2 2.5-2 2.5")
          s.path(
            d:
              "M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2z"
          )
        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_code_icon.rb
phlex-lucide-0.427.1 lib/phlex/lucide/icons/folder_code_icon.rb
phlex-lucide-0.427.0 lib/phlex/lucide/icons/folder_code_icon.rb