Sha256: b4126af138202eea5256b418fb1db1053671bb86665469598d4ea94eb524efb4
Contents?: true
Size: 1.12 KB
Versions: 10
Compression:
Stored size: 1.12 KB
Contents
# frozen_string_literal: true # rubocop:disable Layout/LineLength,Metrics/MethodLength module Phlex module Icons module Tabler class BuildingPlus < 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 21h9') s.path(d: 'M9 8h1') s.path(d: 'M9 12h1') s.path(d: 'M9 16h1') s.path(d: 'M14 8h1') s.path(d: 'M14 12h1') s.path( d: 'M5 21v-16c0 -.53 .211 -1.039 .586 -1.414c.375 -.375 .884 -.586 1.414 -.586h10c.53 0 1.039 .211 1.414 .586c.375 .375 .586 .884 .586 1.414v7' ) s.path(d: 'M16 19h6') s.path(d: 'M19 16v6') end end end end end end # rubocop:enable Layout/LineLength,Metrics/MethodLength
Version data entries
10 entries across 10 versions & 2 rubygems