Sha256: 58dc5eb4b70d5c4ad202e614a955c45da768bbf6d1b537a3d070a74d98e2bfce
Contents?: true
Size: 753 Bytes
Versions: 12
Compression:
Stored size: 753 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowLeftRight < 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 13l4 -4l-4 -4') s.path(d: 'M7 13l-4 -4l4 -4') s.path(d: 'M12 14a5 5 0 0 1 5 -5h4') s.path(d: 'M12 19v-5a5 5 0 0 0 -5 -5h-4') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems