Sha256: 80c799e7cc1b711d7ea17c1703b20366f991fb1746eeee82e65a4fdd79f58d95
Contents?: true
Size: 725 Bytes
Versions: 26
Compression:
Stored size: 725 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class CircleDivide < 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.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
26 entries across 26 versions & 2 rubygems