Sha256: f34e5925101f40e6c2701ac760938b8b630537ddb7f0dafde05b5e36f6a06668
Contents?: true
Size: 667 Bytes
Versions: 14
Compression:
Stored size: 667 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Repeat < 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: 'm17 2 4 4-4 4') s.path(d: 'M3 11v-1a4 4 0 0 1 4-4h14') s.path(d: 'm7 22-4-4 4-4') s.path(d: 'M21 13v1a4 4 0 0 1-4 4H3') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems