Sha256: 54b7cf6a31d18b7a75e180c2fa22632f4ce8d502d836eb2353804642e47389d6
Contents?: true
Size: 848 Bytes
Versions: 12
Compression:
Stored size: 848 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowMerge < 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: 'M8 7l4 -4l4 4') s.path( d: 'M12 3v5.394a6.737 6.737 0 0 1 -3 5.606a6.737 6.737 0 0 0 -3 5.606v1.394' ) s.path( d: 'M12 3v5.394a6.737 6.737 0 0 0 3 5.606a6.737 6.737 0 0 1 3 5.606v1.394' ) end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems