Sha256: 9f3775cda1bbd46151a2883c1ca80e3969617ac7ae8abc57fa904b7e38fe39f1
Contents?: true
Size: 736 Bytes
Versions: 12
Compression:
Stored size: 736 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class BatteryWarning < Base def view_template 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: 'M10 17h.01') s.path(d: 'M10 7v6') s.path(d: 'M14 7h2a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-2') s.path(d: 'M22 11v2') s.path(d: 'M6 7H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems