Sha256: 2415567c10100155d6bc37206b82caaa0903adccb8db6cda88229e7a2a9058c0
Contents?: true
Size: 735 Bytes
Versions: 3
Compression:
Stored size: 735 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class BlindsIcon < 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: "M3 3h18") s.path(d: "M20 7H8") s.path(d: "M20 11H8") s.path(d: "M10 19h10") s.path(d: "M8 15h12") s.path(d: "M4 3v14") s.circle(cx: "4", cy: "19", r: "2") 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/blinds_icon.rb |
phlex-lucide-0.427.1 | lib/phlex/lucide/icons/blinds_icon.rb |
phlex-lucide-0.427.0 | lib/phlex/lucide/icons/blinds_icon.rb |