Sha256: 0a74fb0a3ddfb0294e4e2edee57d2c88e79db7b8e9b2dc18353a06461ca6d42e
Contents?: true
Size: 728 Bytes
Versions: 14
Compression:
Stored size: 728 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class CloudOff < Base def view_template 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: 'm2 2 20 20') s.path(d: 'M5.782 5.782A7 7 0 0 0 9 19h8.5a4.5 4.5 0 0 0 1.307-.193') s.path( d: 'M21.532 16.5A4.5 4.5 0 0 0 17.5 10h-1.79A7.008 7.008 0 0 0 10 5.07' ) end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems