Sha256: 76094c791cbf993824aec60cef4393d038e42cf11693408d115df7053cda9401
Contents?: true
Size: 704 Bytes
Versions: 18
Compression:
Stored size: 704 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Mist < 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: 'M5 5h3m4 0h9') s.path(d: 'M3 10h11m4 0h1') s.path(d: 'M5 15h5m4 0h7') s.path(d: 'M3 20h9m4 0h3') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems