Sha256: fc898051bfed71cdf72ae49edff222e9b83408af6b0a1d78a83d4778a992a067
Contents?: true
Size: 773 Bytes
Versions: 12
Compression:
Stored size: 773 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Swords < Base def filled raise NotImplementedError end def outline 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: 'M21 3v5l-11 9l-4 4l-3 -3l4 -4l9 -11z') s.path(d: 'M5 13l6 6') s.path(d: 'M14.32 17.32l3.68 3.68l3 -3l-3.365 -3.365') s.path(d: 'M10 5.5l-2 -2.5h-5v5l3 2.5') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems