Sha256: d1f35ccf46cadcf0e4c42de970463060e51c430db39ddcec492be1c4e14e0b15
Contents?: true
Size: 611 Bytes
Versions: 14
Compression:
Stored size: 611 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Axe < 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 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
14 entries across 14 versions & 2 rubygems