Sha256: d15a64161befcdc8d73f3d93a99887c0c82aebc29e1048a0cb148fcdb39c9257
Contents?: true
Size: 686 Bytes
Versions: 14
Compression:
Stored size: 686 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowRampRight3 < 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: 'M6 3v6') s.path(d: 'M16 16l4 -4l-4 -4') s.path(d: 'M6 21v-6a3 3 0 0 1 3 -3h11') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems