Sha256: 8f0d3fb07b6ff0d2d71f52f5abb4f70a3462e2ae8485f4d132bc28b2b5e4f213
Contents?: true
Size: 661 Bytes
Versions: 18
Compression:
Stored size: 661 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ArrowLoopLeft2 < 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: 'M13 21v-6m0 -6v-1a4 4 0 1 1 4 4h-13') s.path(d: 'M8 16l-4 -4l4 -4') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems