Sha256: 9251821b6f58b9a848b462a70c672a81f9661d687137e5426be155f66cd654c3
Contents?: true
Size: 702 Bytes
Versions: 14
Compression:
Stored size: 702 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CurrencyRupeeNepalese < Base def filled raise NotImplementedError end def outline 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: 'M15 5h-11h3a4 4 0 1 1 0 8h-3l6 6') s.path(d: 'M21 17l-4.586 -4.414a2 2 0 0 0 -2.828 2.828l.707 .707') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems