Sha256: c127a6c74d70c6d1724f44c36db67cf6ec2b5f9d2b40c73c5b2a91be5389fe18
Contents?: true
Size: 682 Bytes
Versions: 14
Compression:
Stored size: 682 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CurrencyRufiyaa < 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: 'M20 16h.01') s.path(d: 'M4 16c9.5 -4 11.5 -8 14 -9') s.path(d: 'M12 8l5 3') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems