Sha256: 1d12c0b3e0df70973e75d2422ac4b7142526c4e183ef1d8dabd0b6766cb2921f
Contents?: true
Size: 939 Bytes
Versions: 26
Compression:
Stored size: 939 Bytes
Contents
# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Lucide class Clover < 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: 'M16.17 7.83 2 22') s.path( d: 'M4.02 12a2.827 2.827 0 1 1 3.81-4.17A2.827 2.827 0 1 1 12 4.02a2.827 2.827 0 1 1 4.17 3.81A2.827 2.827 0 1 1 19.98 12a2.827 2.827 0 1 1-3.81 4.17A2.827 2.827 0 1 1 12 19.98a2.827 2.827 0 1 1-4.17-3.81A1 1 0 1 1 4 12' ) s.path(d: 'm7.83 7.83 8.34 8.34') end end end end end end # rubocop:enable Layout/LineLength
Version data entries
26 entries across 26 versions & 2 rubygems