Sha256: bde9edb7fc5039789c1c53d3af57f1ee80e03e6fe98ac45c672451b205b127b5
Contents?: true
Size: 716 Bytes
Versions: 12
Compression:
Stored size: 716 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CloudSnow < 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: 'M7 18a4.6 4.4 0 0 1 0 -9a5 4.5 0 0 1 11 2h1a3.5 3.5 0 0 1 0 7') s.path(d: 'M11 15v.01m0 3v.01m0 3v.01m4 -4v.01m0 3v.01') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems