Class: Phlex::Lucide::QrCodeIcon
- Defined in:
- lib/phlex/lucide/icons/qr_code_icon.rb
Instance Attribute Summary
Attributes inherited from Icon
Instance Method Summary collapse
Methods inherited from Icon
Constructor Details
This class inherits a constructor from Phlex::Lucide::Icon
Instance Method Details
#view_template ⇒ Object
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
# File 'lib/phlex/lucide/icons/qr_code_icon.rb', line 6 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.rect(width: "5", height: "5", x: "3", y: "3", rx: "1") s.rect(width: "5", height: "5", x: "16", y: "3", rx: "1") s.rect(width: "5", height: "5", x: "3", y: "16", rx: "1") s.path(d: "M21 16h-3a2 2 0 0 0-2 2v3") s.path(d: "M21 21v.01") s.path(d: "M12 7v3a2 2 0 0 1-2 2H7") s.path(d: "M3 12h.01") s.path(d: "M12 3h.01") s.path(d: "M12 16v.01") s.path(d: "M16 12h1") s.path(d: "M21 12v.01") s.path(d: "M12 21v-1") end end |