Sha256: d11da3146ef3b4e69fa4d32942c8c4d67103d52dc224546bf11b6a0a3f408b5f
Contents?: true
Size: 773 Bytes
Versions: 3
Compression:
Stored size: 773 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class FoldVerticalIcon < 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: "M12 22v-6") s.path(d: "M12 8V2") s.path(d: "M4 12H2") s.path(d: "M10 12H8") s.path(d: "M16 12h-2") s.path(d: "M22 12h-2") s.path(d: "m15 19-3-3-3 3") s.path(d: "m15 5-3 3-3-3") end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems