Sha256: 069609308eef70a73dc479e927cd094c937255d6e1da7d13dd41c85ce1643a47
Contents?: true
Size: 767 Bytes
Versions: 14
Compression:
Stored size: 767 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Currency < 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.circle(cx: '12', cy: '12', r: '8') s.line(x1: '3', x2: '6', y1: '3', y2: '6') s.line(x1: '21', x2: '18', y1: '3', y2: '6') s.line(x1: '3', x2: '6', y1: '21', y2: '18') s.line(x1: '21', x2: '18', y1: '21', y2: '18') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems