Sha256: 4f582265dc85802382cfac227ebade94e045f9bd2949e3b1a13bbb8a9d4bbe7f
Contents?: true
Size: 746 Bytes
Versions: 12
Compression:
Stored size: 746 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class SortDescending < 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 6l9 0') s.path(d: 'M4 12l7 0') s.path(d: 'M4 18l7 0') s.path(d: 'M15 15l3 3l3 -3') s.path(d: 'M18 6l0 12') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems