# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Tabler class BellOff < 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: 'M9.346 5.353c.21 -.129 .428 -.246 .654 -.353a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3m-1 3h-13a4 4 0 0 0 2 -3v-3a6.996 6.996 0 0 1 1.273 -3.707' ) s.path(d: 'M9 17v1a3 3 0 0 0 6 0v-1') s.path(d: 'M3 3l18 18') end end end end end end # rubocop:enable Layout/LineLength