Sha256: 7b2b26549be6eba3829d659500219213d9fee7d956b219c9225db2ae062995fe
Contents?: true
Size: 880 Bytes
Versions: 14
Compression:
Stored size: 880 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BuildingEstate < 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 21h18') s.path(d: 'M19 21v-4') s.path(d: 'M19 17a2 2 0 0 0 2 -2v-2a2 2 0 1 0 -4 0v2a2 2 0 0 0 2 2z') s.path(d: 'M14 21v-14a3 3 0 0 0 -3 -3h-4a3 3 0 0 0 -3 3v14') s.path(d: 'M9 17v4') s.path(d: 'M8 13h2') s.path(d: 'M8 9h2') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems