Sha256: 3acbe9ca5bfe5cd3dc789d7a6f026354d021502f14e62e0978a3a47ba3172f3b
Contents?: true
Size: 766 Bytes
Versions: 3
Compression:
Stored size: 766 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class FolderRootIcon < 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: "M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z" ) s.circle(cx: "12", cy: "13", r: "2") s.path(d: "M12 15v5") end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems