Sha256: 06676e5b270f7ffee5fcd7fba9fa3d55925af396c38bfaa37518ef8f263f9f29
Contents?: true
Size: 1010 Bytes
Versions: 26
Compression:
Stored size: 1010 Bytes
Contents
# frozen_string_literal: true # rubocop:disable Metrics/MethodLength module Phlex module Icons module Lucide class Building < Base def view_template svg( class: classes, xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24', fill: 'none', stroke: 'currentColor', stroke_width: '2', stroke_linecap: 'round', stroke_linejoin: 'round' ) do |s| s.rect(width: '16', height: '20', x: '4', y: '2', rx: '2', ry: '2') s.path(d: 'M9 22v-4h6v4') s.path(d: 'M8 6h.01') s.path(d: 'M16 6h.01') s.path(d: 'M12 6h.01') s.path(d: 'M12 10h.01') s.path(d: 'M12 14h.01') s.path(d: 'M16 10h.01') s.path(d: 'M16 14h.01') s.path(d: 'M8 10h.01') s.path(d: 'M8 14h.01') end end end end end end # rubocop:enable Metrics/MethodLength
Version data entries
26 entries across 26 versions & 2 rubygems