Sha256: b96a63669e7ab8fb6ed53765678acaac0fd7b1230b977ec4307f997b0540ede2
Contents?: true
Size: 803 Bytes
Versions: 14
Compression:
Stored size: 803 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BuildingHospital < Base def filled raise NotImplementedError end def outline svg( **attrs, 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.path(d: 'M3 21l18 0') s.path(d: 'M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16') s.path(d: 'M9 21v-4a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v4') s.path(d: 'M10 9l4 0') s.path(d: 'M12 7l0 4') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems