Sha256: bd5c5cddb86185c81bef88d0e893fcb203d34b2648351f66951704dec671b8ab
Contents?: true
Size: 694 Bytes
Versions: 3
Compression:
Stored size: 694 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class GavelIcon < 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: "m14.5 12.5-8 8a2.119 2.119 0 1 1-3-3l8-8") s.path(d: "m16 16 6-6") s.path(d: "m8 8 6-6") s.path(d: "m9 7 8 8") s.path(d: "m21 11-8-8") 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/gavel_icon.rb |
phlex-lucide-0.427.1 | lib/phlex/lucide/icons/gavel_icon.rb |
phlex-lucide-0.427.0 | lib/phlex/lucide/icons/gavel_icon.rb |