# frozen_string_literal: true module Phlex module Icons module Tabler class MistOff < 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: 'M12 5h9') s.path(d: 'M3 10h7') s.path(d: 'M18 10h1') s.path(d: 'M5 15h5') s.path(d: 'M14 15h1m4 0h2') s.path(d: 'M3 20h9m4 0h3') s.path(d: 'M3 3l18 18') end end end end end end