Sha256: 0b4b012c6ef459ad9be26ecc8f03de79297ae58c4f0bcf0adb4570d8696fc3da
Contents?: true
Size: 919 Bytes
Versions: 3
Compression:
Stored size: 919 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class ChartScatterIcon < 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: "7.5", cy: "7.5", r: ".5", fill: "currentColor") s.circle(cx: "18.5", cy: "5.5", r: ".5", fill: "currentColor") s.circle(cx: "11.5", cy: "11.5", r: ".5", fill: "currentColor") s.circle(cx: "7.5", cy: "16.5", r: ".5", fill: "currentColor") s.circle(cx: "17.5", cy: "14.5", r: ".5", fill: "currentColor") s.path(d: "M3 3v16a2 2 0 0 0 2 2h16") end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems