Sha256: 3af7a4d1010c90ac6bf720570a8bd40fc2f29fe306481f8aa0291a84a6daaaf9
Contents?: true
Size: 802 Bytes
Versions: 18
Compression:
Stored size: 802 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class MeterCube < 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: 'M17 5h1.5a1.5 1.5 0 0 1 0 3h-.5h.5a1.5 1.5 0 0 1 0 3h-1.5') s.path(d: 'M4 12v6') s.path(d: 'M4 14a2 2 0 0 1 2 -2h.5a2.5 2.5 0 0 1 2.5 2.5v3.5') s.path(d: 'M9 15.5v-1a2.5 2.5 0 1 1 5 0v3.5') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems