Sha256: d1b4f43e4b9d672a3df3d433e8476b49c20a6543acc979db0976902515756581
Contents?: true
Size: 845 Bytes
Versions: 12
Compression:
Stored size: 845 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class SortAscendingNumbers < 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 15l3 3l3 -3') s.path(d: 'M7 6v12') s.path(d: 'M17 3a2 2 0 0 1 2 2v3a2 2 0 1 1 -4 0v-3a2 2 0 0 1 2 -2z') s.path(d: 'M17 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0') s.path(d: 'M19 16v3a2 2 0 0 1 -2 2h-1.5') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems