Sha256: f40dc57b3e0525535939106447eb90c7cc63a4676e4668348b36893f8600a63f
Contents?: true
Size: 785 Bytes
Versions: 14
Compression:
Stored size: 785 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowsTransferDown < 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: 'M17 3v6') s.path(d: 'M10 18l-3 3l-3 -3') s.path(d: 'M7 21v-18') s.path(d: 'M20 6l-3 -3l-3 3') s.path(d: 'M17 21v-2') s.path(d: 'M17 15v-2') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems