Sha256: 1db15a00fa6943eb810a791936b959f5fe988d8af78edf8142d7facd12856e90
Contents?: true
Size: 774 Bytes
Versions: 12
Compression:
Stored size: 774 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowWaveRightDown < 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 14h4v-4') 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