Sha256: 87ae61c861820df5658976d57b43eec731c1a8ba4607bd6a3b733d607cd5f2c8
Contents?: true
Size: 790 Bytes
Versions: 12
Compression:
Stored size: 790 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CurrencyNaira < 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: 'M7 18v-10.948a1.05 1.05 0 0 1 1.968 -.51l6.064 10.916a1.05 1.05 0 0 0 1.968 -.51v-10.948' ) s.path(d: 'M5 10h14') s.path(d: 'M5 14h14') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems