Sha256: 5e4b3db1ba9314330eabacc34512e1fd188c76a9d1e417de42d23aba2d6340cc
Contents?: true
Size: 1.02 KB
Versions: 18
Compression:
Stored size: 1.02 KB
Contents
# frozen_string_literal: true # rubocop:disable Metrics/MethodLength module Phlex module Icons module Tabler class Buildings < 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: 'M4 21v-15c0 -1 1 -2 2 -2h5c1 0 2 1 2 2v15') s.path(d: 'M16 8h2c1 0 2 1 2 2v11') s.path(d: 'M3 21h18') s.path(d: 'M10 12v0') s.path(d: 'M10 16v0') s.path(d: 'M10 8v0') s.path(d: 'M7 12v0') s.path(d: 'M7 16v0') s.path(d: 'M7 8v0') s.path(d: 'M17 12v0') s.path(d: 'M17 16v0') end end end end end end # rubocop:enable Metrics/MethodLength
Version data entries
18 entries across 18 versions & 2 rubygems