Sha256: 8cc19ea6b154588f09f17c0584212575e7e8c9b6431f7c729cc1269703298636
Contents?: true
Size: 682 Bytes
Versions: 14
Compression:
Stored size: 682 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class IndianRupee < 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: 'M6 3h12') s.path(d: 'M6 8h12') s.path(d: 'm6 13 8.5 8') s.path(d: 'M6 13h3') s.path(d: 'M9 13c6.667 0 6.667-10 0-10') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems