Sha256: 42f1da63887dc53d2c806ad38251e0bf53b990c2097f0be7b6b839cb00cbf7e5
Contents?: true
Size: 717 Bytes
Versions: 18
Compression:
Stored size: 717 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Medal < 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: 'M12 4v3m-4 -3v6m8 -6v6') s.path( d: 'M12 18.5l-3 1.5l.5 -3.5l-2 -2l3 -.5l1.5 -3l1.5 3l3 .5l-2 2l.5 3.5z' ) end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems