Sha256: e37f7c79c4c6aeec81ecc2a39ba75991c0df12c5aa35a47c63ff50a3fdee9582
Contents?: true
Size: 778 Bytes
Versions: 3
Compression:
Stored size: 778 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class NewspaperIcon < 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 22h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16a2 2 0 0 1-2 2Zm0 0a2 2 0 0 1-2-2v-9c0-1.1.9-2 2-2h2" ) s.path(d: "M18 14h-8") s.path(d: "M15 18h-5") s.path(d: "M10 6h8v4h-8V6Z") 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/newspaper_icon.rb |
phlex-lucide-0.427.1 | lib/phlex/lucide/icons/newspaper_icon.rb |
phlex-lucide-0.427.0 | lib/phlex/lucide/icons/newspaper_icon.rb |