Sha256: 8be05b315ce82abf68c6adc3d4d249eb102df1597691c3821b4bf309b95b4eaf
Contents?: true
Size: 737 Bytes
Versions: 18
Compression:
Stored size: 737 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CurrencyRiyal < 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 9v2a2 2 0 1 1 -4 0v-1v1a2 2 0 1 1 -4 0v-1v4a2 2 0 1 1 -4 0v-2') s.path(d: 'M18 12.01v-.01') s.path(d: 'M22 10v1a5 5 0 0 1 -5 5') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems