Sha256: 614b06c29d555d729c5f8133d11f215beb00df1164efb377128ead988498ba96
Contents?: true
Size: 797 Bytes
Versions: 14
Compression:
Stored size: 797 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BuildingStadium < 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: 'M12 12m-8 0a8 2 0 1 0 16 0a8 2 0 1 0 -16 0') s.path(d: 'M4 12v7c0 .94 2.51 1.785 6 2v-3h4v3c3.435 -.225 6 -1.07 6 -2v-7') s.path(d: 'M15 6h4v-3h-4v7') s.path(d: 'M7 6h4v-3h-4v7') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems