Sha256: 13eefe143bafe8c252a63cd7946cd22bc846e26bb69869fbeeeff734b150e307
Contents?: true
Size: 678 Bytes
Versions: 14
Compression:
Stored size: 678 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowUpTail < 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 18l0 -15') s.path(d: 'M15 6l-3 -3l-3 3') s.path(d: 'M15 21l-3 -3l-3 3') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems