Sha256: 2eb36ca5ab1b9afc0ef67dfd46048f9e40d00c99c85c0aeb3b346db0c80d8b9c
Contents?: true
Size: 868 Bytes
Versions: 14
Compression:
Stored size: 868 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BuildingFactory2 < 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: 'M5 21v-12l5 4v-4l5 4h4') s.path( d: 'M19 21v-8l-1.436 -9.574a.5 .5 0 0 0 -.495 -.426h-1.145a.5 .5 0 0 0 -.494 .418l-1.43 8.582' ) s.path(d: 'M9 17h1') s.path(d: 'M14 17h1') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems