Sha256: 25f00222b7d7b7c2a4ee24cda23385deeed6970bbab290c8d77f86919e371da5
Contents?: true
Size: 878 Bytes
Versions: 18
Compression:
Stored size: 878 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowMergeAltLeft < 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: 'M8 7l4 -4l4 4') s.path(d: 'M18 21v.01') s.path(d: 'M18 18.01v.01') s.path(d: 'M17 15.02v.01') s.path(d: 'M14 13.03v.01') 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' ) end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems