Sha256: 22ecad14d7c528d29ddda4dd9a0baed33f78cc5183083edbc431f21e6662768b
Contents?: true
Size: 590 Bytes
Versions: 26
Compression:
Stored size: 590 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Blend < 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.circle(cx: '9', cy: '9', r: '7') s.circle(cx: '15', cy: '15', r: '7') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems