Sha256: 13fd4019a4a92583673995aefdc88cf9f5275511e5dd3e29e5e67820efeb80cd
Contents?: true
Size: 667 Bytes
Versions: 14
Compression:
Stored size: 667 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Repeat2 < Base def view_template 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: 'm2 9 3-3 3 3') s.path(d: 'M13 18H7a2 2 0 0 1-2-2V6') s.path(d: 'm22 15-3 3-3-3') s.path(d: 'M11 6h6a2 2 0 0 1 2 2v10') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems