Sha256: 10bb34499c4efa10341ee7867d6e5e03634d39414156cf929618003f23d2b011
Contents?: true
Size: 596 Bytes
Versions: 14
Compression:
Stored size: 596 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class SwissFranc < 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: 'M10 21V3h8') s.path(d: 'M6 16h9') s.path(d: 'M10 9.5h7') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems