Sha256: 546072d60befa01b25e8e31e0ba200f031a0691bd72058ae2c3dea7284003981
Contents?: true
Size: 705 Bytes
Versions: 26
Compression:
Stored size: 705 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Donut < 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.path( d: 'M20.5 10a2.5 2.5 0 0 1-2.4-3H18a2.95 2.95 0 0 1-2.6-4.4 10 10 0 1 0 6.3 7.1c-.3.2-.8.3-1.2.3' ) s.circle(cx: '12', cy: '12', r: '3') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems