Sha256: 5663c9a31846c53320c58b8c3d1f4ba3c028386bc4c68e9a2994e1729b254cc4
Contents?: true
Size: 821 Bytes
Versions: 14
Compression:
Stored size: 821 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CellSignal5 < 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: 'M20 20h-15.269a.731 .731 0 0 1 -.517 -1.249l14.537 -14.537a.731 .731 0 0 1 1.249 .517v15.269z' ) s.path(d: 'M16 7v13') s.path(d: 'M12 20v-9') s.path(d: 'M8 20v-5') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems