Sha256: 38761455a7b3d9c1be340f6da6b16eac3a3241c7394799fc79492e6372c7bbe8
Contents?: true
Size: 690 Bytes
Versions: 18
Compression:
Stored size: 690 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CloudStorm < 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 7h-1') s.path(d: 'M13 14l-2 4l3 0l-2 4') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems