Sha256: 12d157f3bbe099b08d03fffe0fe3ad01c4a73455f95afb1e2d27116d70f8df37
Contents?: true
Size: 787 Bytes
Versions: 3
Compression:
Stored size: 787 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class LecternIcon < 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: "M16 12h3a2 2 0 0 0 1.902-1.38l1.056-3.333A1 1 0 0 0 21 6H3a1 1 0 0 0-.958 1.287l1.056 3.334A2 2 0 0 0 5 12h3" ) s.path(d: "M18 6V3a1 1 0 0 0-1-1h-3") s.rect(width: "8", height: "12", x: "8", y: "10", rx: "1") 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/lectern_icon.rb |
phlex-lucide-0.427.1 | lib/phlex/lucide/icons/lectern_icon.rb |
phlex-lucide-0.427.0 | lib/phlex/lucide/icons/lectern_icon.rb |