Sha256: 3e9ff48c9e1ac8fccecb212de45127ae66da00b69d2831146d537a0ceedba2df
Contents?: true
Size: 732 Bytes
Versions: 18
Compression:
Stored size: 732 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowsSplit < 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: 'M21 17h-8l-3.5 -5h-6.5') s.path(d: 'M21 7h-8l-3.495 5') s.path(d: 'M18 10l3 -3l-3 -3') s.path(d: 'M18 20l3 -3l-3 -3') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems