Sha256: 02e3f58e0eb25decb22fdb241503cb03dffcd9b2eadda3b2374b286c1567a04a
Contents?: true
Size: 821 Bytes
Versions: 3
Compression:
Stored size: 821 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class Building2Icon < 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: "M6 22V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v18Z") s.path(d: "M6 12H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2") s.path(d: "M18 9h2a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2h-2") s.path(d: "M10 6h4") s.path(d: "M10 10h4") s.path(d: "M10 14h4") s.path(d: "M10 18h4") end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems