Sha256: 0ca810a168563a8069d9624338c848c3f367756c15874305459994c38fbb8593
Contents?: true
Size: 609 Bytes
Versions: 3
Compression:
Stored size: 609 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class CircleStopIcon < 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.circle(cx: "12", cy: "12", r: "10") s.rect(width: "6", height: "6", x: "9", y: "9") end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems