Sha256: 44372de5ad63dfb84802a389671bb3ef3758d63496b89c236910f2be2aa3d6b3
Contents?: true
Size: 773 Bytes
Versions: 12
Compression:
Stored size: 773 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowWaveRightUp < 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: 'M17 10h4v4') s.path( d: 'M3 12c.887 -1.284 2.48 -2.033 4 -2c1.52 -.033 3.113 .716 4 2s2.48 2.033 4 2c1.52 .033 3 -1 4 -2l2 -2' ) end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems