Sha256: 02c938951600aaf6e91e9ad303f53341f01d939965e9a3094a7451c0ab7fa506
Contents?: true
Size: 643 Bytes
Versions: 3
Compression:
Stored size: 643 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class CircleGaugeIcon < Phlex::Lucide::Icon def view_template svg( xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewbox: "0 0 24 24", fill: "none", stroke: "currentColor", stroke_width: "2", stroke_linecap: "round", stroke_linejoin: "round", **props ) do |s| s.path(d: "M15.6 2.7a10 10 0 1 0 5.7 5.7") s.circle(cx: "12", cy: "12", r: "2") s.path(d: "M13.4 10.6 19 5") end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems