# frozen_string_literal: true module Phlex module Icons module Tabler class MailboxOff < Base def filled raise NotImplementedError end def outline svg( class: classes, 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: 'M10 21v-6.5a3.5 3.5 0 0 0 -7 0v6.5h18m0 -4v-2a4 4 0 0 0 -4 -4h-2m-4 0h-4.5' ) s.path(d: 'M12 8v-5h4l2 2l-2 2h-4') s.path(d: 'M6 15h1') s.path(d: 'M3 3l18 18') end end end end end end