Sha256: d29c2b0bf7b5d3617b95013ba7e2707fd2e8f1a1cb3890a64b2fe5447b115534
Contents?: true
Size: 665 Bytes
Versions: 14
Compression:
Stored size: 665 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowNarrowUp < 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: 'M12 5l0 14') s.path(d: 'M16 9l-4 -4') s.path(d: 'M8 9l4 -4') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems