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