Sha256: 4a2dc94173a708d5218b7ba8f59616a8f9e96ce8ab0200fd4dfc87abbddb5533
Contents?: true
Size: 708 Bytes
Versions: 10
Compression:
Stored size: 708 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowUpRhombus < 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: 'M12 16v-13') s.path(d: 'M15 6l-3 -3l-3 3') s.path(d: 'M14.5 18.5l-2.5 2.5l-2.5 -2.5l2.5 -2.5z') end end end end end end
Version data entries
10 entries across 10 versions & 2 rubygems