Sha256: ab51a1d75672dd3806a164f98a125a8b4ca51ee517a18d0de2a4cbffbf8bf3f0

Contents?: true

Size: 721 Bytes

Versions: 3

Compression:

Stored size: 721 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Lucide
    class FolderCheckIcon < 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 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"
          )
          s.path(d: "m9 13 2 2 4-4")
        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_check_icon.rb
phlex-lucide-0.427.1 lib/phlex/lucide/icons/folder_check_icon.rb
phlex-lucide-0.427.0 lib/phlex/lucide/icons/folder_check_icon.rb