Sha256: db60333730a7af6f5c8cfec19ae835c2a04370cbe4e713ce3603405064bb9835
Contents?: true
Size: 792 Bytes
Versions: 14
Compression:
Stored size: 792 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class LayersSubtract < 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: 'M8 4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z' ) s.path(d: 'M16 16v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-8a2 2 0 0 1 2 -2h2') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems