Sha256: e08104863009a3f6de12832909e11bd4f4f337b0e874e2c7eb72c8a3a480081d
Contents?: true
Size: 618 Bytes
Versions: 26
Compression:
Stored size: 618 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Axe < Base def view_template svg( class: classes, 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 12-8.5 8.5a2.12 2.12 0 1 1-3-3L11 9') s.path(d: 'M15 13 9 7l4-4 6 6h3a8 8 0 0 1-7 7z') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems