Sha256: acc081f4235c4083dfbec0c929b4ca6058b6c2d414c7efb069cc6fc03efe0151
Contents?: true
Size: 724 Bytes
Versions: 14
Compression:
Stored size: 724 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BuildingWarehouse < 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 21v-13l9 -4l9 4v13') s.path(d: 'M13 13h4v8h-10v-6h6') s.path(d: 'M13 21v-9a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v3') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems