# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Tabler class ShieldPlus < 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: 'M12.462 20.87c-.153 .047 -.307 .09 -.462 .13a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3a12 12 0 0 0 8.5 3a12 12 0 0 1 .11 6.37' ) s.path(d: 'M16 19h6') s.path(d: 'M19 16v6') end end end end end end # rubocop:enable Layout/LineLength