Sha256: a5752968101577f7b5a9ae13493dd2ac0c2fd5cf01247ba7f52459d92413a837
Contents?: true
Size: 677 Bytes
Versions: 12
Compression:
Stored size: 677 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowDownTail < 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 6v15') s.path(d: 'M9 18l3 3l3 -3') s.path(d: 'M9 3l3 3l3 -3') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems