# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Tabler class CellSignalOff < 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: 'M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l7.265 -7.264m2 -2l5.272 -5.272a.731 .731 0 0 1 1.249 .517v11.269' ) s.path(d: 'M3 3l18 18') end end end end end end # rubocop:enable Layout/LineLength