Sha256: ff48e213c6deef2582403a4ad6eee0c9320ece7935be6a89fc167d5e696c889c
Contents?: true
Size: 750 Bytes
Versions: 14
Compression:
Stored size: 750 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowMergeBoth < 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: 'M16 8l-4 -4l-4 4') s.path(d: 'M12 20v-16') s.path(d: 'M18 18c-4 -1.333 -6 -4.667 -6 -10') s.path(d: 'M6 18c4 -1.333 6 -4.667 6 -10') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems