Sha256: e1ca4e7940deb78d06ac0eb95fd47b2c9c6b350013a8e1f94d778df7b533e761
Contents?: true
Size: 632 Bytes
Versions: 26
Compression:
Stored size: 632 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class DollarSign < 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.line(x1: '12', x2: '12', y1: '2', y2: '22') s.path(d: 'M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems