# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Tabler class MailFast < 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: 'M3 7h3') s.path(d: 'M3 11h2') s.path( d: 'M9.02 8.801l-.6 6a2 2 0 0 0 1.99 2.199h7.98a2 2 0 0 0 1.99 -1.801l.6 -6a2 2 0 0 0 -1.99 -2.199h-7.98a2 2 0 0 0 -1.99 1.801z' ) s.path(d: 'M9.8 7.5l2.982 3.28a3 3 0 0 0 4.238 .202l3.28 -2.982') end end end end end end # rubocop:enable Layout/LineLength