Sha256: 5b6ac8f978d9aa82543fd661359f190bbab504d4a4401b26a530fbc3e58074fd
Contents?: true
Size: 799 Bytes
Versions: 14
Compression:
Stored size: 799 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class MistOff < 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: '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
Version data entries
14 entries across 14 versions & 2 rubygems