Sha256: 73d1148f4c548c96e1c097929c716ae9ce44bda95cb3d20aaf6f04a46a50c81e
Contents?: true
Size: 693 Bytes
Versions: 14
Compression:
Stored size: 693 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CloudRain < 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: '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 13v2m0 3v2m4 -5v2m0 3v2') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems