Sha256: fcd199fafbc22526c611e3722a4c73f0ff538e6fe44cb829842e44a285161410
Contents?: true
Size: 719 Bytes
Versions: 12
Compression:
Stored size: 719 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BuildingArch < Base def filled raise NotImplementedError end def outline 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.path(d: 'M3 21l18 0') s.path(d: 'M4 21v-15a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v15') s.path(d: 'M9 21v-8a3 3 0 0 1 6 0v8') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems