Sha256: 33404d68ca3cb6026dc64b4113209651934d3cfb59271277cb405a9b532ead47
Contents?: true
Size: 628 Bytes
Versions: 14
Compression:
Stored size: 628 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Battery < 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') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems