Sha256: b3cbe9514c9e4c3c522353e35ee98f974ce662f33d5561c563d1d17a212cf163
Contents?: true
Size: 750 Bytes
Versions: 3
Compression:
Stored size: 750 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class FolderUpIcon < 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: "M12 10v6") s.path(d: "m9 13 3-3 3 3") 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_up_icon.rb |
phlex-lucide-0.427.1 | lib/phlex/lucide/icons/folder_up_icon.rb |
phlex-lucide-0.427.0 | lib/phlex/lucide/icons/folder_up_icon.rb |