Sha256: dd5baf1bc08421f47adc493e02fca2910f5b684f2ac0e8e55746493fb738d5be
Contents?: true
Size: 709 Bytes
Versions: 12
Compression:
Stored size: 709 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CurrencyRupeeNepalese < Base def filled raise NotImplementedError end def outline 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: '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
12 entries across 12 versions & 2 rubygems