Sha256: ad9b6775ff79d9c25a8501f8902616c2679921ce9aa86c058eeff48e7a17dd4f
Contents?: true
Size: 686 Bytes
Versions: 12
Compression:
Stored size: 686 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowRightTail < 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: 'M18 15l3 -3l-3 -3') s.path(d: 'M3 15l3 -3l-3 -3') s.path(d: 'M6 12l15 0') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems