Sha256: 3fc01337932b1278d19bb49b9e0692955529efa80fa273ab1cc15fe44891f5aa
Contents?: true
Size: 724 Bytes
Versions: 3
Compression:
Stored size: 724 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class AwardIcon < 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.477 12.89 1.515 8.526a.5.5 0 0 1-.81.47l-3.58-2.687a1 1 0 0 0-1.197 0l-3.586 2.686a.5.5 0 0 1-.81-.469l1.514-8.526" ) s.circle(cx: "12", cy: "8", r: "6") 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/award_icon.rb |
phlex-lucide-0.427.1 | lib/phlex/lucide/icons/award_icon.rb |
phlex-lucide-0.427.0 | lib/phlex/lucide/icons/award_icon.rb |