Sha256: 730a9bafc2e6f7fb94c344ce3d2b135a53299b806a87fa16c7c5d51acb9db5e2
Contents?: true
Size: 752 Bytes
Versions: 18
Compression:
Stored size: 752 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CellSignal4 < 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') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems