Sha256: 1db9b0b8a70cf8a1dbc4657818d523c66a6c66af0b588731ea8b788669f20409
Contents?: true
Size: 677 Bytes
Versions: 18
Compression:
Stored size: 677 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CurrencyZloty < 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 18h-7l7 -7h-7') s.path(d: 'M17 18v-13') s.path(d: 'M14 14.5l6 -3.5') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems