# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Tabler class ShieldPause < 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: 'M13.004 20.692c-.329 .117 -.664 .22 -1.004 .308a12 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 -.081 7.034' ) s.path(d: 'M17 17v5') s.path(d: 'M21 17v5') end end end end end end # rubocop:enable Layout/LineLength