Sha256: 357e8c9fc449f7775857f8266cc71f8f17e21f71ccebacfe090cd1779b8f414b
Contents?: true
Size: 949 Bytes
Versions: 3
Compression:
Stored size: 949 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class GrapeIcon < 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: "M22 5V2l-5.89 5.89") s.circle(cx: "16.6", cy: "15.89", r: "3") s.circle(cx: "8.11", cy: "7.4", r: "3") s.circle(cx: "12.35", cy: "11.65", r: "3") s.circle(cx: "13.91", cy: "5.85", r: "3") s.circle(cx: "18.15", cy: "10.09", r: "3") s.circle(cx: "6.56", cy: "13.2", r: "3") s.circle(cx: "10.8", cy: "17.44", r: "3") s.circle(cx: "5", cy: "19", r: "3") end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
phlex-lucide-0.428.0 | lib/phlex/lucide/icons/grape_icon.rb |
phlex-lucide-0.427.1 | lib/phlex/lucide/icons/grape_icon.rb |
phlex-lucide-0.427.0 | lib/phlex/lucide/icons/grape_icon.rb |