Sha256: 31726fc45e34971c6bd8f4200f293da1ff61631daa005c56e561353e3f7672ef
Contents?: true
Size: 608 Bytes
Versions: 14
Compression:
Stored size: 608 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class CircleX < 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: 'm15 9-6 6') s.path(d: 'm9 9 6 6') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems