# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Tabler class BuildingMinus < 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') end end end end end end # rubocop:enable Layout/LineLength