# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Tabler class Tax < 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: 'M8.487 21h7.026a4 4 0 0 0 3.808 -5.224l-1.706 -5.306a5 5 0 0 0 -4.76 -3.47h-1.71a5 5 0 0 0 -4.76 3.47l-1.706 5.306a4 4 0 0 0 3.808 5.224' ) s.path(d: 'M15 3q -1 4 -3 4t -3 -4z') s.path(d: 'M14 11h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5') s.path(d: 'M12 10v1') s.path(d: 'M12 17v1') end end end end end end # rubocop:enable Layout/LineLength