Sha256: bf54644a6205122782bdc4a735c5d5a447844ec05b9b5eca05a74328c824959c
Contents?: true
Size: 669 Bytes
Versions: 26
Compression:
Stored size: 669 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Infinity < 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: 'M12 12c-2-2.67-4-4-6-4a4 4 0 1 0 0 8c2 0 4-1.33 6-4Zm0 0c2 2.67 4 4 6 4a4 4 0 0 0 0-8c-2 0-4 1.33-6 4Z' ) end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems