Sha256: 58ccd3285aaf09543387f3dc84a897794fab5bb0b2cbfd38480d439c0a4791d3
Contents?: true
Size: 747 Bytes
Versions: 12
Compression:
Stored size: 747 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class StackBack < Base def filled raise NotImplementedError end def outline svg( class: classes, 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: 'M4 8l8 4l8 -4l-8 -4z') s.path(d: 'M12 16l-4 -2l-4 2l8 4l8 -4l-4 -2l-4 2z', fill: 'currentColor') s.path(d: 'M8 10l-4 2l4 2m8 0l4 -2l-4 -2') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems