Sha256: cda3a65ee6c1ebf71c2ec2afa20cc6297f57afc25449caa52ee76363828c90c6
Contents?: true
Size: 792 Bytes
Versions: 12
Compression:
Stored size: 792 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowsTransferDown < 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 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
12 entries across 12 versions & 2 rubygems