Sha256: 78a85c68e5fb7c839508f49ab16c4e1f72a085100a21d8257eee225bcbd0552b
Contents?: true
Size: 688 Bytes
Versions: 14
Compression:
Stored size: 688 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowRampLeft3 < 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: 'M18 3v6') s.path(d: 'M8 16l-4 -4l4 -4') s.path(d: 'M18 21v-6a3 3 0 0 0 -3 -3h-11') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems