Sha256: 0beff8c7e444fdfbd2d4ec6229aa0d52a6cc21a2f5ba2dbcc834e0623e0f5b2d
Contents?: true
Size: 718 Bytes
Versions: 14
Compression:
Stored size: 718 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class CircleDivide < 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.line(x1: '8', x2: '16', y1: '12', y2: '12') s.line(x1: '12', x2: '12', y1: '16', y2: '16') s.line(x1: '12', x2: '12', y1: '8', y2: '8') s.circle(cx: '12', cy: '12', r: '10') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems