Sha256: 12cc855371ba249220c53be2ce0b39b541bf299527d1eb7e6fb4c431c5538ed3
Contents?: true
Size: 688 Bytes
Versions: 14
Compression:
Stored size: 688 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class BatteryLow < 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.rect(width: '16', height: '10', x: '2', y: '7', rx: '2', ry: '2') s.line(x1: '22', x2: '22', y1: '11', y2: '13') s.line(x1: '6', x2: '6', y1: '11', y2: '13') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems