Sha256: 425a305462f0a85222f636eaea2615e62c0e0bf702383a82bbe7b5e2dc489124
Contents?: true
Size: 582 Bytes
Versions: 14
Compression:
Stored size: 582 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class CircleCheck < 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: '12', cy: '12', r: '10') s.path(d: 'm9 12 2 2 4-4') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems