Sha256: 299001b5e54d5658f12f8969f4232fd2b10406f6592a56b340f6cc0356343f08
Contents?: true
Size: 648 Bytes
Versions: 14
Compression:
Stored size: 648 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Sword < Base def filled raise NotImplementedError end def outline 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: 'M20 4v5l-9 7l-4 4l-3 -3l4 -4l7 -9z') s.path(d: 'M6.5 11.5l6 6') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems