Sha256: af1ff80546ab2a000ba37d6982da1af5b7721dc15ca23a0f08a59f167938e03a
Contents?: true
Size: 865 Bytes
Versions: 18
Compression:
Stored size: 865 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class MeterSquare < 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 5h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h2' ) 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