Sha256: 2b0310f281a3a0bc2eb8d42109bec0a1821280b66a16eb93845db5c410ca066e
Contents?: true
Size: 693 Bytes
Versions: 18
Compression:
Stored size: 693 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Gavel < Base def view_template svg( **attrs, xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24', fill: 'none', stroke: 'currentColor', stroke_width: '2', stroke_linecap: 'round', stroke_linejoin: 'round' ) 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 end
Version data entries
18 entries across 18 versions & 2 rubygems