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