Sha256: 6cff9905dc6f9edb23b654b06bf7bb28f34d8785edd3ed545df75675605b38c8
Contents?: true
Size: 709 Bytes
Versions: 26
Compression:
Stored size: 709 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Euro < Base def view_template 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: 'M4 10h12') s.path(d: 'M4 14h9') s.path( d: 'M19 6a7.7 7.7 0 0 0-5.2-2A7.9 7.9 0 0 0 6 12c0 4.4 3.5 8 7.8 8 2 0 3.8-.8 5.2-2' ) end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems