Sha256: 44e09db3aa0038abfc7c4bc9454477075f4117a82165461b43c3b18021f43aef
Contents?: true
Size: 708 Bytes
Versions: 12
Compression:
Stored size: 708 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowForwardUpDouble < 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: 'M11 14l4 -4l-4 -4') s.path(d: 'M16 14l4 -4l-4 -4') s.path(d: 'M15 10h-7a4 4 0 1 0 0 8h1') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems