Sha256: 153b7ef7e6aa3c7fe3f1338b252325dc757c15ce50a51dac1d57b63ed5146c67
Contents?: true
Size: 674 Bytes
Versions: 26
Compression:
Stored size: 674 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Repeat < Base def view_template svg( class: classes, 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
26 entries across 26 versions & 2 rubygems