# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Tabler class PhonePause < 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: 'M5 4h4l2 5l-2.5 1.5a11 11 0 0 0 5 5l1.5 -2.5l5 2v4a2 2 0 0 1 -2 2c-8.072 -.49 -14.51 -6.928 -15 -15a2 2 0 0 1 2 -2' ) s.path(d: 'M17 3v5') s.path(d: 'M21 3v5') end end end end end end # rubocop:enable Layout/LineLength