Sha256: f1ac4724c077ff58bd6d754fb974026ef34bab119ff9c3a9f3b9d5f24d1c22fe
Contents?: true
Size: 793 Bytes
Versions: 14
Compression:
Stored size: 793 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class DeviceMobileCharging < 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: 'M6 3m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z' ) s.path(d: 'M11 4h2') s.path(d: 'M12 9.5l-1 2.5h2l-1 2.5') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems